File tree 4 files changed +17
-4
lines changed
4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 1
1
Change Log
2
2
=========
3
3
4
- Version 0.1.0 * (In Development )*
5
- --------------------------------
4
+ Version 0.1.0 * (2015-02-21 )*
5
+ ----------------------------
6
6
7
7
Initial release.
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ Download
129
129
--------
130
130
131
131
``` groovy
132
- compile 'com.squareup.sqlbrite:sqlbrite:0.1.0-SNAPSHOT '
132
+ compile 'com.squareup.sqlbrite:sqlbrite:0.1.0'
133
133
```
134
134
135
135
Snapshots of the development version are available in [ Sonatype's ` snapshots ` repository] [ snap ] .
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 1
1
GROUP =com.squareup.sqlbrite
2
- VERSION_NAME =0.1.0-SNAPSHOT
2
+ VERSION_NAME =0.1.0
3
3
4
4
POM_DESCRIPTION =A lightweight wrapper around SQLiteOpenHelper which introduces reactive stream semantics to SQL operations.
5
5
You can’t perform that action at this time.
0 commit comments