diff --git a/README.md b/README.md
index 9f1ceb1..c982b6b 100644
--- a/README.md
+++ b/README.md
@@ -12,11 +12,11 @@ This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINO
Prerelease builds of the upcoming 2.x version of HoneySQL will soon be available:
-[](https://clojars.org/seancorfield/honeysql) [](https://cljdoc.org/d/seancorfield/honeysql/2.0.0-alpha1)
+[](https://clojars.org/seancorfield/honeysql) [](https://cljdoc.org/d/seancorfield/honeysql/2.0.0-alpha2)
This is the README for the upcoming 2.x version of HoneySQL which provides a streamlined codebase and a simpler method for extending the DSL. It also supports SQL dialects out-of-the-box and will be extended to support vendor-specific language features over time (unlike the 1.x version).
-See this [summary of differences between v1 and v2](https://cljdoc.org/d/seancorfield/honeysql/2.0.0-alpha1/doc/differences-from-1-x) if you want to help test v2!
+See this [summary of differences between v1 and v2](doc/differences-from-1-x.md) if you want to help test v2!
## Note on code samples
diff --git a/doc/getting-started.md b/doc/getting-started.md
index 464fdaf..f49781c 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
- seancorfield/honeysql {:mvn/version "2.0.0-alpha1"}
+ seancorfield/honeysql {:mvn/version "2.0.0-alpha2"}
```
For Leiningen, add the following dependency to your `project.clj` file:
```clojure
- [seancorfield/honeysql "2.0.0-alpha1"]
+ [seancorfield/honeysql "2.0.0-alpha2"]
```
HoneySQL produces SQL statements but does not execute them.
@@ -235,7 +235,7 @@ common for people to use the [nilenso/honeysql-postgres library](https://github.
to get DDL support, even if they didn't need the PostgreSQL-specific
extensions. That library does not work with HoneySQL 2.x but all
of the functionality from it has been incorporated
-into HoneySQL now and is described in the [PostgreSQL](doc/postgresql.md)
+into HoneySQL now and is described in the [PostgreSQL](postgresql.md)
section (because that covers all of the things that the nilenso
library supported and much of it was PostgreSQL-specific!).
@@ -319,6 +319,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/seancorfield/honeysql/2.0.0-alpha1/api/honey.sql.helpers) namespace.
+[honey.sql.helpers](https://cljdoc.org/d/seancorfield/honeysql/2.0.0-alpha2/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/pom.xml b/pom.xml
index 9114dc8..a268646 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
seancorfield
honeysql
- 2.0.0-alpha1
+ 2.0.0-alpha2
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-alpha1
+ v2.0.0-alpha2