Skip to content

Commit

Permalink
Change Group ID from rethinkdb to com.apa512
Browse files Browse the repository at this point in the history
We don't want people to get confused between the official Java RethinkDB
driver and this driver.

Fixes apa512#92
  • Loading branch information
danielcompton committed Oct 12, 2015
1 parent 8fe19e0 commit b9794fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. This change
- `rethinkdb.query/default` function, for supplying a default value/function for missing values. [90b58cd](https://github.com/apa512/clj-rethinkdb/commit/90b58cd14179fb4eec6e8a28387fe4eda1397adb)

### Changed
- Change Maven Group ID from `rethinkdb` to `com.apa512`. [#102](https://github.com/apa512/clj-rethinkdb/pull/102), [#92](https://github.com/apa512/clj-rethinkdb/issues/92)
- Update dependency to Clojure 1.7. [#59](https://github.com/apa512/clj-rethinkdb/pull/59)
- The query parts of this library have been converted to use Clojure 1.7 Reader Conditionals. This means that you can generate queries in ClojureScript and run them on the server (be very careful with this!). [#59](https://github.com/apa512/clj-rethinkdb/pull/59)
- Update protobuf support to RethinkDB 2.1.0.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ A RethinkDB client for Clojure. Tested and supported on RethinkDB 2.0.x but shou

## Install

[![Clojars Project](http://clojars.org/rethinkdb/latest-version.svg)](http://clojars.org/rethinkdb)
[![Clojars Project](http://clojars.org/com.apa512/rethinkdb/latest-version.svg)](http://clojars.org/com.apa512/rethinkdb)

## Changes

Expand All @@ -25,12 +25,12 @@ All changes are published in the [CHANGELOG](CHANGELOG.md). Of particular note,
(-> (r/db "test")
(r/table-create "authors")
(r/run conn))

(comment "This is equivalent to the previous query; db on connection is implicitly
used if no db is provided."
(-> (r/table-create "authors")
(r/run conn)))

;; Create an index on the field "genre".
(-> (r/db "test")
(r/table "authors")
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject rethinkdb "0.11.0-SNAPSHOT"
(defproject com.apa512/rethinkdb "0.11.0-SNAPSHOT"
:description "RethinkDB client"
:url "http://github.com/apa512/clj-rethinkdb"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit b9794fc

Please sign in to comment.