Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IGNITE-23763 Update Ignite version to 2.18.0-SNAPSHOT #11761

Merged
merged 1 commit into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# limitations under the License.
exclude: [guidelines.md, "Gemfile", "Gemfile.lock", README.adoc, "_docs/code-snippets", "_docs/includes", '*.sh']
attrs: &asciidoc_attributes
version: 2.17.0-SNAPSHOT
version: 2.18.0-SNAPSHOT
base_url: /docs
stylesdir: /docs/assets/css
imagesdir: /docs
Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/code-snippets/java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<version>1.0.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<ignite.version>2.17.0-SNAPSHOT</ignite.version>
<ignite.version>2.18.0-SNAPSHOT</ignite.version>
</properties>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion modules/checkstyle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.flatten.file.name>pom-installed.xml</maven.flatten.file.name>
<revision>2.17.0-SNAPSHOT</revision>
<revision>2.18.0-SNAPSHOT</revision>
<checkstyle.puppycrawl.version>8.45</checkstyle.puppycrawl.version>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion modules/core/src/main/resources/ignite.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# limitations under the License.
#

ignite.version=2.17.0-SNAPSHOT
ignite.version=2.18.0-SNAPSHOT
ignite.build=0
ignite.revision=DEV
ignite.rel.date=01011970
Expand Down
2 changes: 1 addition & 1 deletion modules/dev-utils/ignite-modules-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sourceCompatibility = 11
targetCompatibility = 11

ext {
ignVer = '2.17.0-SNAPSHOT'
ignVer = '2.18.0-SNAPSHOT'
moduleName = 'ignite_modules_test'
}

Expand Down
2 changes: 1 addition & 1 deletion modules/ducktests/tests/ignitetest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
# due to python version naming restrictions, which are enforced by python packaging tools
# (see https://www.python.org/dev/peps/pep-0440/)
#
__version__ = '2.17.0-SNAPSHOT'
__version__ = '2.18.0-SNAPSHOT'
2 changes: 1 addition & 1 deletion modules/platforms/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#

cmake_minimum_required(VERSION 3.6)
project(Ignite.C++ VERSION 2.17.0.23483)
project(Ignite.C++ VERSION 2.18.0.24515)

set(CMAKE_CXX_STANDARD 98)

Expand Down
6 changes: 3 additions & 3 deletions modules/platforms/dotnet/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("2.17.0.23483")]
[assembly: AssemblyFileVersion("2.17.0.23483")]
[assembly: AssemblyInformationalVersion("2.17.0")]
[assembly: AssemblyVersion("2.18.0.24515")]
[assembly: AssemblyFileVersion("2.18.0.24515")]
[assembly: AssemblyInformationalVersion("2.18.0")]
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>

<revision>2.17.0-SNAPSHOT</revision>
<revision>2.18.0-SNAPSHOT</revision>
<!-- Ignite version will be substituted with the flatten-maven-plugin and used as
a version dependency for Ignite extensions. -->
<ignite.version>${revision}</ignite.version>
Expand Down
Loading