Skip to content

Commit 4c0a7a5

Browse files
committed
Prepare version 0.1.0.
1 parent c11ac18 commit 4c0a7a5

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Change Log
22
=========
33

4-
Version 0.1.0 *(In Development)*
5-
--------------------------------
4+
Version 0.1.0 *(2015-02-21)*
5+
----------------------------
66

77
Initial release.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Download
129129
--------
130130

131131
```groovy
132-
compile 'com.squareup.sqlbrite:sqlbrite:0.1.0-SNAPSHOT'
132+
compile 'com.squareup.sqlbrite:sqlbrite:0.1.0'
133133
```
134134

135135
Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap].

RELEASING.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Releasing
2+
========
3+
4+
1. Change the version in `gradle.properties` to a non-SNAPSHOT verson.
5+
2. Update the `CHANGELOG.md` for the impending release.
6+
3. Update the `README.md` with the new version.
7+
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
8+
5. `git tag -a X.Y.X -m "Version X.Y.Z"` (where X.Y.Z is the new version)
9+
6. `./gradlew clean uploadArchives`
10+
7. Update the `gradle.properties` to the next SNAPSHOT version.
11+
8. `git commit -am "Prepare next development version."`
12+
9. `git push && git push --tags`
13+
10. Visit [Sonatype Nexus](https://oss.sonatype.org/) and promote the artifact.

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GROUP=com.squareup.sqlbrite
2-
VERSION_NAME=0.1.0-SNAPSHOT
2+
VERSION_NAME=0.1.0
33

44
POM_DESCRIPTION=A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.
55

0 commit comments

Comments
 (0)