prep for 2.0.0-rc4
This commit is contained in:
parent
7e84b58463
commit
679a0309db
6 changed files with 9 additions and 9 deletions
|
|
@ -1,6 +1,6 @@
|
|||
# Changes
|
||||
|
||||
* 2.0.next in progress (2.x will be VGN only)
|
||||
* 2.0.0-rc4 (for testing; 2021-07-17)
|
||||
* Fix #338 by adding `ONLY` to `:fetch`.
|
||||
* Fix #337 by switching to `clojure.test` even for ClojureScript.
|
||||
* Address #330 by improving exception when a non-entity is encountered where an entity is expected.
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim
|
|||
|
||||
## Build
|
||||
|
||||
[](https://clojars.org/com.github.seancorfield/honeysql) [](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT)
|
||||
[](https://clojars.org/com.github.seancorfield/honeysql) [](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT)
|
||||
|
||||
Once the prerelease testing is complete, this project will follow 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.
|
||||
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ Supported Clojure versions: 1.7 and later.
|
|||
|
||||
```clojure
|
||||
;; in deps.edn:
|
||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc3"}
|
||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc4"}
|
||||
|
||||
;; in use:
|
||||
(ns my.project
|
||||
|
|
|
|||
|
|
@ -114,6 +114,6 @@ section. The full list
|
|||
of "special syntax" functions is documented in the
|
||||
[Special Syntax](special-syntax.md) section. The best
|
||||
documentation for the helper functions is in the
|
||||
[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-rc3/api/honey.sql.helpers) namespace.
|
||||
[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT/api/honey.sql.helpers) namespace.
|
||||
If you're migrating to HoneySQL 2.x, this [overview of differences
|
||||
between 1.x and 2.x](differences-from-1-x.md) should help.
|
||||
|
|
|
|||
|
|
@ -9,13 +9,13 @@ data to a SQL statement (string) and any parameters it needs.
|
|||
For the Clojure CLI, add the following dependency to your `deps.edn` file:
|
||||
|
||||
```clojure
|
||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc3"}
|
||||
com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc4"}
|
||||
```
|
||||
|
||||
For Leiningen, add the following dependency to your `project.clj` file:
|
||||
|
||||
```clojure
|
||||
[com.github.seancorfield/honeysql "2.0.0-rc3"]
|
||||
[com.github.seancorfield/honeysql "2.0.0-rc4"]
|
||||
```
|
||||
|
||||
HoneySQL produces SQL statements but does not execute them.
|
||||
|
|
@ -367,7 +367,7 @@ section. The full list
|
|||
of "special syntax" functions is documented in the
|
||||
[Special Syntax](special-syntax.md) section. The best
|
||||
documentation for the helper functions is in the
|
||||
[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-rc3/api/honey.sql.helpers) namespace.
|
||||
[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT/api/honey.sql.helpers) namespace.
|
||||
More detail about certain core HoneySQL functionality can be found in the
|
||||
[Reference documentation](general-reference.md).
|
||||
If you're migrating to HoneySQL 2.x, this [overview of differences
|
||||
|
|
|
|||
4
pom.xml
4
pom.xml
|
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.github.seancorfield</groupId>
|
||||
<artifactId>honeysql</artifactId>
|
||||
<version>2.0.0-rc3</version>
|
||||
<version>2.0.0-rc4</version>
|
||||
<name>honeysql</name>
|
||||
<description>SQL as Clojure data structures.</description>
|
||||
<url>https://github.com/seancorfield/honeysql</url>
|
||||
|
|
@ -25,7 +25,7 @@
|
|||
<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>v2.0.0-rc3</tag>
|
||||
<tag>v2.0.0-rc4</tag>
|
||||
</scm>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
|
|
|
|||
Loading…
Reference in a new issue