Skip to content

Commit

Permalink
Prep for 1.0.0-alpha11 release
Browse files Browse the repository at this point in the history
cljdoc failed on alpha10 because `cljdoc.edn` had the wrong filename.
  • Loading branch information
seancorfield committed Apr 24, 2019
1 parent f7578a9 commit adc1aba
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log

* 2019-04-24 -- 1.0.0-alpha10 -- Rename `:gen-fn` to `:builder-fn` (**BREAKING CHANGE!**); Fix #13 by adding documentation for `datafy`/`nav`/`:schema`; Fix #15 by automatically adding `:next.jdbc/sql-string` into the options hash map, so custom builders can depend on the SQL string.
* 2019-04-22 -- 1.0.0-alpha9 -- Fix #14 by respecting `:gen-fn` (as of 1.0.0-alpha10: `:builder-fn`) in `execute-one` for `PreparedStatement`.
* 2019-04-24 -- 1.0.0-alpha11 -- Rename `:gen-fn` to `:builder-fn` (**BREAKING CHANGE!**); Fix #13 by adding documentation for `datafy`/`nav`/`:schema`; Fix #15 by automatically adding `:next.jdbc/sql-string` into the options hash map, so custom builders can depend on the SQL string.
* 2019-04-22 -- 1.0.0-alpha9 -- Fix #14 by respecting `:gen-fn` (as of 1.0.0-alpha11: `:builder-fn`) in `execute-one` for `PreparedStatement`.
* 2019-04-21 -- 1.0.0-alpha8 -- Initial publicly announced release.

## Unreleased Changes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The latest versions on Clojars and on cljdoc:

[![Clojars Project](https://clojars.org/seancorfield/next.jdbc/latest-version.svg)](https://clojars.org/seancorfield/next.jdbc) [![cljdoc badge](https://cljdoc.org/badge/seancorfield/next.jdbc)](https://cljdoc.org/d/seancorfield/next.jdbc/CURRENT)

This documentation is for 1.0.0-alpha10.
This documentation is for 1.0.0-alpha11.

* [Getting Started](/doc/getting-started.md)
* [Migrating from `clojure.java.jdbc`](/doc/migration-from-clojure-java-jdbc.md)
Expand Down
2 changes: 1 addition & 1 deletion doc/cljdoc.edn
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
["Prepared Statements" {:file "doc/prepared-statements.md"}]
["Transactions" {:file "doc/transactions.md"}]]
["All The Options" {:file "doc/all-the-options.md"}]
["datafy, nav, and :schema" {:file "doc/datafy-nav-schema.md"}]
["datafy, nav, and :schema" {:file "doc/datafy-nav-and-schema.md"}]
["Migration from clojure.java.jdbc" {:file "doc/migration-from-clojure-java-jdbc.md"}]]}
6 changes: 3 additions & 3 deletions doc/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ It is designed to work with Clojure 1.10 or later, supports `datafy`/`nav`, and
You can add `next.jdbc` to your project with either:

```clojure
{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha10"}}
{seancorfield/next.jdbc {:mvn/version "1.0.0-alpha11"}}
```
for `deps.edn` or:

```clojure
[seancorfield/next.jdbc "1.0.0-alpha10"]
[seancorfield/next.jdbc "1.0.0-alpha11"]
```
for `project.clj` or `build.boot`.

Expand All @@ -29,7 +29,7 @@ For the examples in this documentation, we will use a local H2 database on disk,
```clojure
;; deps.edn
{:deps {org.clojure/clojure {:mvn/version "1.10.0"}
seancorfield/next.jdbc {:mvn/version "1.0.0-alpha10"}
seancorfield/next.jdbc {:mvn/version "1.0.0-alpha11"}
com.h2database/h2 {:mvn/version "1.4.197"}}}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>seancorfield</groupId>
<artifactId>next.jdbc</artifactId>
<version>1.0.0-alpha10</version>
<version>1.0.0-alpha11</version>
<name>next.jdbc</name>

<description>The next generation of clojure.java.jdbc: a new low-level Clojure wrapper for JDBC-based access to databases.</description>
Expand Down

0 comments on commit adc1aba

Please sign in to comment.