Skip to content

Commit

Permalink
Bump version 5.18.0 (#3456) (#3536)
Browse files Browse the repository at this point in the history
* [NOID] Bump version to 5.18.0
  • Loading branch information
vga91 committed Feb 15, 2024
1 parent 70f020f commit 9aa6ea5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ downloadLicenses {

allprojects {
group = 'org.neo4j.procedure'
version = '5.17.0'
version = '5.18.0'
archivesBaseName = 'apoc'
description = """neo4j-apoc-procedures"""
}
Expand Down Expand Up @@ -71,8 +71,8 @@ subprojects {
// neo4jDockerImage system property is used in TestContainerUtil
systemProperties 'user.language' : 'en' ,
'user.country' : 'US',
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise-debian' : 'neo4j:5.17.0-enterprise-debian',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-debian' : 'neo4j:5.17.0-debian',
'neo4jDockerImage' : System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-enterprise-debian' : 'neo4j:5.18.0-enterprise-debian',
'neo4jCommunityDockerImage': System.getProperty("NEO4JVERSION") ? 'neo4j:' + System.getProperty("NEO4JVERSION") + '-debian' : 'neo4j:5.18.0-debian',
'coreDir': 'apoc-core/core',
'testDockerBundle': false

Expand Down Expand Up @@ -131,7 +131,7 @@ subprojects {

ext {
// NB: due to version.json generation by parsing this file, the next line must not have any if/then/else logic
neo4jVersion = "5.17.0"
neo4jVersion = "5.18.0"
// instead we apply the override logic here
neo4jVersionEffective = project.hasProperty("neo4jVersionOverride") ? project.getProperty("neo4jVersionOverride") : neo4jVersion
testContainersVersion = '1.18.3'
Expand Down
2 changes: 1 addition & 1 deletion docs/asciidoc/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ asciidoc:
docs-version: "5.0"
branch: "5.0"
apoc-release-absolute: "5.0"
apoc-release: "5.17.0"
apoc-release: "5.18.0"
1 change: 1 addition & 0 deletions docs/asciidoc/modules/ROOT/partials/neo4j-server.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ The version compatibility matrix explains the mapping between Neo4j and APOC ver
[opts=header]
|===
|apoc version | neo4j version
| https:/neo4j-contrib/neo4j-apoc-procedures/releases/5.18.0[5.18.0^] | 5.18.0 (5.18.x)
| https:/neo4j-contrib/neo4j-apoc-procedures/releases/5.17.0[5.17.0^] | 5.17.0 (5.17.x)
| https:/neo4j-contrib/neo4j-apoc-procedures/releases/5.16.0[5.16.0^] | 5.16.0 (5.16.x)
| https:/neo4j-contrib/neo4j-apoc-procedures/releases/5.15.0[5.15.0^] | 5.15.0 (5.15.x)
Expand Down
2 changes: 1 addition & 1 deletion docs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ plugins {
id 'org.neo4j.doc.build.docbook' version '1.0-alpha12'
}

if (!project.hasProperty('apocVersion')) { ext.apocVersion = '5.17.0' }
if (!project.hasProperty('apocVersion')) { ext.apocVersion = '5.18.0' }

ext {
versionParts = apocVersion.split('-')
Expand Down
2 changes: 1 addition & 1 deletion extra-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ext {


subprojects {
version = '5.17.0'
version = '5.18.0'
group = 'org.neo4j.contrib'
}

Expand Down
4 changes: 2 additions & 2 deletions readme.adoc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:readme:
:branch: 5.4
:docs: https://neo4j.com/labs/apoc/5
:apoc-release: 5.17.0
:neo4j-version: 5.17.0
:apoc-release: 5.18.0
:neo4j-version: 5.18.0
:img: https://raw.githubusercontent.com/neo4j-contrib/neo4j-apoc-procedures/{branch}/docs/images

https://community.neo4j.com[image:https://img.shields.io/discourse/users?logo=discourse&server=https%3A%2F%2Fcommunity.neo4j.com[Discourse users]]
Expand Down

0 comments on commit 9aa6ea5

Please sign in to comment.