Skip to content

Commit

Permalink
Release version 1.3
Browse files Browse the repository at this point in the history
Updated bintray plugin version to 1.8.1, release wouldn't succeed
without it.

Fixed an issue where we had two release name variables for some reason.
  • Loading branch information
sjamesr committed Jul 23, 2019
1 parent 097e2a1 commit 222899b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ If you're using Maven, you can use the following snippet in your `pom.xml` to ge
<dependency>
<groupId>com.google.re2j</groupId>
<artifactId>re2j</artifactId>
<version>1.2</version>
<version>1.3</version>
</dependency>
```

Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java-library'
id 'wrapper'
id 'com.jfrog.bintray' version '1.7.3'
id 'com.jfrog.bintray' version '1.8.1'
id 'maven-publish'
id 'com.github.sherter.google-java-format' version '0.3.2'
id 'net.ltgt.errorprone' version '0.0.11'
Expand All @@ -15,7 +15,7 @@ plugins {
cobertura.coverageFormats = ['html', 'xml']

// The name of the release we're working on. See RELEASING.md for details.
def versionName = '1.2'
def versionName = '1.3'

wrapper {
gradleVersion '4.9'
Expand Down Expand Up @@ -116,8 +116,6 @@ task benchmarks(type: JavaExec) {
main = 'com.google.re2j.Benchmarks'
}

def releaseVersion = '1.2'

task sourceJar(type: Jar) {
baseName 'sources'

Expand Down Expand Up @@ -164,7 +162,7 @@ publishing {

groupId 'com.google.re2j'
artifactId 're2j'
version releaseVersion
version versionName

pom.withXml {
appendMavenCentralMetadata(asNode())
Expand Down

0 comments on commit 222899b

Please sign in to comment.