From 8e2ba4d117f5702633b0aa7099c71923a100c40d Mon Sep 17 00:00:00 2001 From: Heinrich Klobuczek Date: Thu, 25 Jan 2024 09:33:36 -0900 Subject: [PATCH] updated versions --- .github/workflows/e2e_test.yml | 6 +++--- .github/workflows/test.yml | 13 ++++++++----- lib/active_graph/version.rb | 2 +- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/e2e_test.yml b/.github/workflows/e2e_test.yml index 9833e255b..99e1357ec 100644 --- a/.github/workflows/e2e_test.yml +++ b/.github/workflows/e2e_test.yml @@ -16,9 +16,9 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ jruby-9.4.5.0, ruby-3.2.2 ] - neo4j: [ 5.15.0 ] - active_model: [ 7.1.2 ] + ruby: [ jruby-9.4.5.0, ruby-3.2.3 ] + neo4j: [ 5.16.0 ] + active_model: [ 7.1.3 ] # jruby will fail till bug https://github.com/jruby/jruby-openssl/issues/290 is fixed env: ACTIVE_MODEL_VERSION: ${{ matrix.active_model }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e202cae0..56aa155d2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,12 +17,15 @@ jobs: fail-fast: false matrix: ruby: [ jruby-9.4.5.0, ruby-3.1.4 ] - neo4j: [ 3.5.35, 4.0.12, 4.1.13, 4.2.19, 4.3.24, 4.4.29, 5.15.0 ] - active_model: [ 7.0.8, 7.1.2 ] + neo4j: [ 3.5.35, 4.0.12, 4.1.13, 4.2.19, 4.3.24, 4.4.29, 5.16.0 ] + active_model: [ 7.0.8, 7.1.3 ] include: - - ruby: ruby-3.2.2 - neo4j: 5.15.0 - active_model: 7.1.2 + - ruby: ruby-3.2.3 + neo4j: 5.16.0 + active_model: 7.1.3 + - ruby: ruby-3.3.0 + neo4j: 5.16.0 + active_model: 7.1.3 env: NEO4J_VERSION: ${{ matrix.neo4j }} ACTIVE_MODEL_VERSION: ${{ matrix.active_model }} diff --git a/lib/active_graph/version.rb b/lib/active_graph/version.rb index 45268098d..d291c90aa 100644 --- a/lib/active_graph/version.rb +++ b/lib/active_graph/version.rb @@ -1,3 +1,3 @@ module ActiveGraph - VERSION = '11.5.0.beta.2' + VERSION = '11.5.0.beta.3' end