Skip to content

Commit

Permalink
6.10.0 bump release version
Browse files Browse the repository at this point in the history
  • Loading branch information
Casey Kulm committed Sep 21, 2017
1 parent 3a6108e commit 2168558
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions docs/RELEASING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Releasing

## One time setup

* Must have credentials in `gradle.properties` and `gradle.encrypted.properties`. If you run
without them the `uploadArchives` task will tell you what you are missing.

## Before Release

Update release notes in `bv-android-sdk/CHANGELOG.md`

Bump version number in `bv-android-sdk/gradle.properties`. Following semantic versioning of
`BREAK.FEATURE.FIX(-RC#-BV-SNAPSHOT)`.

## Release

* To publish to internal Bazaarvoice repo,

```
$ ./gradlew clean uploadArchives -Prelease=true
```

* To publish to Maven Central,

```
$ ./gradlew clean uploadArchives -Prelease=true -PopenSourceRelease=true
```

## After Releasing

* If you published to Maven Central you still to login to promote the release candidate since
our release task here still does not manage auto releasing.
* If you would like to test a build in the app, change `useLocalSdk = true` to be false in
`bv-android-sdk/app/app-dependencies.gradle`

## More info
* Checkout Mobile+Github+Release+Process in Confluence
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION_NAME=6.10.0-RC1-BV-SNAPSHOT
VERSION_NAME=6.10.0
GROUP=com.bazaarvoice.bvandroidsdk

POM_DESCRIPTION=Bazaarvoice Android SDK
Expand Down

0 comments on commit 2168558

Please sign in to comment.