1.0.0-rc1

This commit is contained in:
Michael S. Klishin 2012-06-09 12:12:37 +04:00
parent 8ed6665a78
commit e00fa84f1b
3 changed files with 19 additions and 20 deletions

View file

@ -1,3 +1,9 @@
## Changes between 1.0.0-rc1 and 1.0.0-rc2
No changes yet.
## Changes between 1.0.0-beta8 and 1.0.0-rc1
### Documentation improvements

View file

@ -42,11 +42,21 @@ RC1 is something we believe is worth labelling 1.0 when most of documentation gu
## Artifacts
Monger artifacts are [released to Clojars](https://clojars.org/com.novemberain/monger). If you are using Maven, add the following repository
definition to your `pom.xml`:
``` xml
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
```
### The Most Recent Release
With Leiningen:
[com.novemberain/monger "1.0.0-beta8"]
[com.novemberain/monger "1.0.0-rc1"]
With Maven:
@ -54,27 +64,10 @@ With Maven:
<dependency>
<groupId>com.novemberain</groupId>
<artifactId>monger</artifactId>
<version>1.0.0-beta8</version>
<version>1.0.0-rc1</version>
</dependency>
### Snapshots
If you are comfortable with using snapshots, snapshot artifacts are [released to Clojars](https://clojars.org/com.novemberain/monger) every 24 hours.
With Leiningen:
[com.novemberain/monger "1.0.0-SNAPSHOT"]
With Maven:
<dependency>
<groupId>com.novemberain</groupId>
<artifactId>monger</artifactId>
<version>1.0.0-SNAPSHOT</version>
</dependency>
## Getting Started

View file

@ -1,4 +1,4 @@
(defproject com.novemberain/monger "1.0.0-SNAPSHOT"
(defproject com.novemberain/monger "1.0.0-rc1"
:description "Monger is a Clojure MongoDB client for a more civilized age: friendly, flexible and with batteries included"
:min-lein-version "2.0.0"
:license {:name "Eclipse Public License"}