alchemy_i18n 3.0.2 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f8ed0103c10c6bbf7d0fbf1b5ca7d68fc1a6760beb2ddbfc9ea65c8c9f9d7ca0
4
- data.tar.gz: 54df22794d3b743094a2cb860794d31eb6398602c9b5ec1f54e619155d252704
3
+ metadata.gz: afcda1e2237220c08f23a6b02a6c62346f4c6023578013295aed3a65189a617b
4
+ data.tar.gz: 0bddec1cc7a9697e6efd77f59921bf67e2a7064dd2cbb9ceb3d8564e41e99727
5
5
  SHA512:
6
- metadata.gz: c284b4fb443236d484ca5f94a252eb645bf5c3924853488a4331dd056e1545c01b5073b2befa828feea705cb179c9d43304cc811f0f25f0ea75ebd2c7baedcb1
7
- data.tar.gz: f36a639f7a109dca0b445ee4670b08bd58f419f4d74efa175b5c4d20ba835e998d895cd4f8ff68c3a1591828b975158ef6536d1eacb61f8217e4cd0374f4e418
6
+ metadata.gz: 0fbad3ee9e873804db695e5ee41664706ebb68db0496f201728725337b6ad5558d175a453e9deb6052d455a597e39ab8ac85d2c877a4c80ad89069ea37bb04b1
7
+ data.tar.gz: f2f8df792344d80ac620f378c1b565a39641430f84e5388147272545d902367ed0a1c14e44026bb473396b752cae6a10289bf737deae9b9430b3ed8c06689523
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.1.0](https://github.com/AlchemyCMS/alchemy_i18n/tree/v3.1.0) (2023-03-30)
4
+
5
+ [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v3.0.2...v3.1.0)
6
+
7
+ **Merged pull requests:**
8
+
9
+ - Allow also future version of Alchemy [\#47](https://github.com/AlchemyCMS/alchemy_i18n/pull/47) ([sascha-karnatz](https://github.com/sascha-karnatz))
10
+
3
11
  ## [v3.0.2](https://github.com/AlchemyCMS/alchemy_i18n/tree/v3.0.2) (2022-04-20)
4
12
 
5
13
  [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v2.3.1...v3.0.2)
@@ -8,6 +16,10 @@
8
16
 
9
17
  - Skip English for additional locales [\#46](https://github.com/AlchemyCMS/alchemy_i18n/pull/46) ([tvdeyen](https://github.com/tvdeyen))
10
18
 
19
+ ## [v2.3.1](https://github.com/AlchemyCMS/alchemy_i18n/tree/v2.3.1) (2022-04-20)
20
+
21
+ [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v3.0.1...v2.3.1)
22
+
11
23
  ## [v3.0.1](https://github.com/AlchemyCMS/alchemy_i18n/tree/v3.0.1) (2022-04-20)
12
24
 
13
25
  [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v3.0.0...v3.0.1)
@@ -36,10 +48,6 @@
36
48
  - Add german node translations [\#37](https://github.com/AlchemyCMS/alchemy_i18n/pull/37) ([tvdeyen](https://github.com/tvdeyen))
37
49
  - Allow Alchemy 6 [\#36](https://github.com/AlchemyCMS/alchemy_i18n/pull/36) ([afdev82](https://github.com/afdev82))
38
50
 
39
- ## [v2.3.1](https://github.com/AlchemyCMS/alchemy_i18n/tree/v2.3.1) (2022-04-20)
40
-
41
- [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v3.0.1...v2.3.1)
42
-
43
51
  ## [v2.3.0](https://github.com/AlchemyCMS/alchemy_i18n/tree/v2.3.0) (2021-10-26)
44
52
 
45
53
  [Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v2.2.0...v2.3.0)
@@ -1,3 +1,3 @@
1
1
  module AlchemyI18n
2
- VERSION = "3.0.2"
2
+ VERSION = "3.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.2
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-04-20 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alchemy_cms
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: 6.0.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '7'
22
+ version: '8'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: 6.0.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '7'
32
+ version: '8'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: rails-i18n
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -130,7 +130,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
130
130
  - !ruby/object:Gem::Version
131
131
  version: '0'
132
132
  requirements: []
133
- rubygems_version: 3.1.6
133
+ rubygems_version: 3.4.6
134
134
  signing_key:
135
135
  specification_version: 4
136
136
  summary: AlchemyCMS translation files