Skip to content

Commit 47f8240

Browse files
committed
Begin development on next version
1 parent 8468e01 commit 47f8240

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

DEVELOPING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ In order to create a release, the following should be completed in order.
5454
- `signing.secretKeyRingFile`
5555
1. Run `gradle uploadArchives` to create a staging release.
5656
1. Login to [OSSRH](https://oss.sonatype.org/) and promote the staging release to a public release.
57-
1. Change the version number for future development by adding "-alpha.1" in each file, then make another commit with the
57+
1. Change the version number for future development by incrementing the patch number and
58+
adding "-alpha.1" in each file except the README, then make another commit with the
5859
message "Begin development on next version".
5960
1. Push the changes to the source repository: `git push origin master`
6061
1. Create a zip for uploading the release to Github Releases

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ apply plugin: 'eclipse'
77
group = 'com.tokbox'
88
archivesBaseName = 'opentok-server-sdk'
99
// TODO: how do we increment this before/after a release for deployment and development?
10-
version = '2.2.0'
10+
version = '2.2.1-alpha.1'
1111

1212
sourceCompatibility = 1.6
1313

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.opentok.constants;
22

33
public class Version {
4-
public static final String VERSION = "2.2.0";
4+
public static final String VERSION = "2.2.1-alpha.1";
55
}

0 commit comments

Comments
 (0)