Fixes #274 by committing to seancorfield/honeysql for v2

This commit is contained in:
Sean Corfield 2021-01-30 11:59:35 -08:00
parent 0090bf4d1c
commit 4af4f3f7ed
3 changed files with 6 additions and 6 deletions

View file

@ -6,7 +6,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim
The latest stable version (1.0.444) on Clojars and on cljdoc:
[![Clojars Project](https://clojars.org/honeysql/latest-version.svg)](https://clojars.org/honeysql) [![cljdoc badge](https://cljdoc.org/badge/honeysql/honeysql?1.0.444)](https://cljdoc.org/d/honeysql/honeysql/CURRENT)
[![Clojars Project](https://clojars.org/seancorfield/honeysql/latest-version.svg)](https://clojars.org/seancorfield/honeysql) [![cljdoc badge](https://cljdoc.org/badge/seancorfield/honeysql?2.0.next)](https://cljdoc.org/d/seancorfield/honeysql/CURRENT)
This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.

View file

@ -1,5 +1,5 @@
{:mvn/repos {"sonatype" {:url "https://oss.sonatype.org/content/repositories/snapshots/"}}
:paths ["src" "resources"]
:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.10.2"}}
:aliases
{:1.9 {:override-deps {org.clojure/clojure {:mvn/version "1.9.0"}}}

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>honeysql</groupId>
<groupId>seancorfield</groupId>
<artifactId>honeysql</artifactId>
<version>1.0.444</version>
<version>2.0.next</version>
<name>honeysql</name>
<description>SQL as Clojure data structures.</description>
<url>https://github.com/seancorfield/honeysql</url>
@ -25,13 +25,13 @@
<url>https://github.com/seancorfield/honeysql</url>
<connection>scm:git:git://github.com/seancorfield/honeysql.git</connection>
<developerConnection>scm:git:ssh://git@github.com/seancorfield/honeysql.git</developerConnection>
<tag>v1.0.444</tag>
<tag>v2.0.next</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.1</version>
<version>1.10.2</version>
</dependency>
</dependencies>
<build>