diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a0419b..458adaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changes -* 2.0.next in progress +* 2.0.0-beta1 (for testing; 2021-04-09) * Since Alpha 3, more documentation has been written and existing documentation clarified (addressing #300, #309, #313, #314). * Fix #319 by ensuring `register-clause!` is idempotent. * Fix #317 by dropping qualifiers in `:set` clauses (just like we do with `:insert` columns). Note that you can still use explicit _dotted_ names if you want table qualification. diff --git a/README.md b/README.md index edab11b..95c6a94 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINO Prerelease builds of the upcoming 2.x version of HoneySQL are available for testing: -[![Clojars Project](https://clojars.org/com.github.seancorfield/honeysql/latest-version.svg)](https://clojars.org/com.github.seancorfield/honeysql) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/honeysql?2.0.0-alpha3)](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-alpha3) +[![Clojars Project](https://clojars.org/com.github.seancorfield/honeysql/latest-version.svg)](https://clojars.org/com.github.seancorfield/honeysql) [![cljdoc badge](https://cljdoc.org/badge/com.github.seancorfield/honeysql?2.0.0-beta1)](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-beta1) HoneySQL 2.x requires Clojure 1.9 or later. diff --git a/doc/general-reference.md b/doc/general-reference.md index 7fb4825..d4a29fd 100644 --- a/doc/general-reference.md +++ b/doc/general-reference.md @@ -110,6 +110,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-alpha3/api/honey.sql.helpers) namespace. +[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-beta1/api/honey.sql.helpers) namespace. If you're migrating to HoneySQL 2.0, this [overview of differences between 1.0 and 2.0](differences-from-1-x.md) should help. diff --git a/doc/getting-started.md b/doc/getting-started.md index 74c83e4..c40c263 100644 --- a/doc/getting-started.md +++ b/doc/getting-started.md @@ -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-alpha3"} + com.github.seancorfield/honeysql {:mvn/version "2.0.0-beta1"} ``` For Leiningen, add the following dependency to your `project.clj` file: ```clojure - [com.github.seancorfield/honeysql "2.0.0-alpha3"] + [com.github.seancorfield/honeysql "2.0.0-beta1"] ``` HoneySQL produces SQL statements but does not execute them. @@ -318,7 +318,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-alpha3/api/honey.sql.helpers) namespace. +[honey.sql.helpers](https://cljdoc.org/d/com.github.seancorfield/honeysql/2.0.0-beta1/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.0, this [overview of differences diff --git a/pom.xml b/pom.xml index 37bdc46..f68b9d8 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.github.seancorfield honeysql - 2.0.0-alpha3 + 2.0.0-beta1 honeysql SQL as Clojure data structures. https://github.com/seancorfield/honeysql @@ -25,7 +25,7 @@ https://github.com/seancorfield/honeysql scm:git:git://github.com/seancorfield/honeysql.git scm:git:ssh://git@github.com/seancorfield/honeysql.git - v2.0.0-alpha3 + v2.0.0-beta1