From ee65201cfc402cd94b369aa8de1bef39ed18ddf4 Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sun, 15 Aug 2021 11:27:09 -0700 Subject: [PATCH] prep for 2.0 Gold (2.0.783) --- CHANGELOG.md | 4 ++-- README.md | 2 +- doc/differences-from-1-x.md | 2 +- doc/getting-started.md | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e30817..a5fc00a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,8 @@ # Changes -* 2.0.next in progress ("gold" mid-August?) +* 2.0.783 -- 2021-08-15 (a.k.a "2.0 Gold") * Fixes #344 by no longer dropping the qualifier on columns in a `SET` clause _for the `:mysql` dialect only_; the behavior is unchanged for all other dialects. - * Fixes #340 by making hyphen to space logic more general so _operators_ containing `-` should retain the hyphen without special cases. + * Fixes #340 by making the "hyphen to space" logic more general so _operators_ containing `-` should retain the hyphen without special cases. * Documentation improvements: `:fetch`, `:lift`, `:limit`, `:offset`, `:param`, `:select`; also around JSON/PostgreSQL. * Link to the [HoneySQL web app](https://www.john-shaffer.com/honeysql/) in both the README and **Getting Started**. * Switch to `tools.build` for running tests and JAR building etc. diff --git a/README.md b/README.md index d25ec01..b2f139a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ SQL as Clojure data structures. Build queries programmatically -- even at runtim ## Build -[![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-rc5)](https://cljdoc.org/d/com.github.seancorfield/honeysql/CURRENT) +[![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.783)](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. diff --git a/doc/differences-from-1-x.md b/doc/differences-from-1-x.md index 3989783..7c56d88 100644 --- a/doc/differences-from-1-x.md +++ b/doc/differences-from-1-x.md @@ -49,7 +49,7 @@ Supported Clojure versions: 1.7 and later. ```clojure ;; in deps.edn: -com.github.seancorfield/honeysql {:mvn/version "2.0.0-rc5"} +com.github.seancorfield/honeysql {:mvn/version "2.0.783"} ;; in use: (ns my.project diff --git a/doc/getting-started.md b/doc/getting-started.md index 495138f..747fdaf 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-rc5"} + com.github.seancorfield/honeysql {:mvn/version "2.0.783"} ``` For Leiningen, add the following dependency to your `project.clj` file: ```clojure - [com.github.seancorfield/honeysql "2.0.0-rc5"] + [com.github.seancorfield/honeysql "2.0.783"] ``` HoneySQL produces SQL statements but does not execute them.