Skip to content

Commit

Permalink
updated to Cassandra 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
smiklosovic committed Jul 27, 2021
1 parent 5b0e081 commit ee0a380
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v4.0-rc2-\d+\.\d+\.\d+$/
only: /^v4.0.\d+-\d+\.\d+\.\d+$/
- publish-github-release-2-2:
requires:
- build-2-2
Expand Down Expand Up @@ -276,4 +276,4 @@ workflows:
branches:
ignore: /.*/
tags:
only: /^v4.0-rc2-\d+\.\d+\.\d+$/
only: /^v4.0.\d+-\d+\.\d+\.\d+$/
6 changes: 3 additions & 3 deletions cassandra-4.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<relativePath>../pom.xml</relativePath>
</parent>

<artifactId>cassandra-ldap-4.0-rc2</artifactId>
<version>1.0.1</version>
<artifactId>cassandra-ldap-4.0.0</artifactId>
<version>1.0.0</version>

<name>Cassandra LDAP Authenticator for Cassandra 4.0</name>
<description>Pluggable LDAP authentication implementation for Apache Cassandra 4.0</description>

<properties>
<version.cassandra4>4.0-rc2</version.cassandra4>
<version.cassandra4>4.0.0</version.cassandra4>

<version.shrinkwrap.bom>1.2.6</version.shrinkwrap.bom>
<version.shrinkwrap.resolvers>3.1.3</version.shrinkwrap.resolvers>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
public class Cassandra40LDAPIntegrationTest extends AbstractLDAPTest {
@Override
public String getCassandraVersion() {
return System.getProperty("cassandra4.version", "4.0-rc2");
return System.getProperty("cassandra4.version", "4.0.0");
}

@Override
public String getImplementationGAV() {
return "com.instaclustr:cassandra-ldap-4.0-rc2:1.0.1";
return "com.instaclustr:cassandra-ldap-" + getCassandraVersion() + ":1.0.0";
}

@Test
Expand Down

0 comments on commit ee0a380

Please sign in to comment.