Skip to content

Commit 49ecc78

Browse files
committed
version bump to v0.5.0
1 parent 5763f8b commit 49ecc78

File tree

7 files changed

+16
-12
lines changed

7 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# Changelog
22

3-
## next / unreleased
3+
## v0.5.0 / 2024-01-27
44

55
### Added
66

7+
- `precompiled` now supports the `arm-linux-musl` platform.
8+
- `precompiled` now supports the `aarch64-linux-musl` platform.
9+
- `precompiled` now supports the `x86-linux-musl` platform.
10+
- `precompiled` now supports the `x86_64-linux-musl` platform.
711
- `precompiled` gem now supports Ruby 3.2 and 3.3, and drops support for Ruby 2.6 and 2.7
812
- The `extconf.rb` file in `packaged_tarball` and `precompiled` now use a `ExtConf` module pattern for encapsulation.
913

isolated/lib/rcee/isolated/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RCEE
44
module Isolated
5-
VERSION = "0.4.0"
5+
VERSION = "0.5.0"
66
end
77
end

packaged_source/lib/rcee/packaged_source/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RCEE
44
module PackagedSource
5-
VERSION = "0.4.0"
5+
VERSION = "0.5.0"
66
end
77
end

packaged_tarball/lib/rcee/packaged_tarball/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RCEE
44
module PackagedTarball
5-
VERSION = "0.4.0"
5+
VERSION = "0.5.0"
66
end
77
end

precompiled/lib/rcee/precompiled/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RCEE
44
module Precompiled
5-
VERSION = "0.4.0"
5+
VERSION = "0.5.0"
66
end
77
end

rcee.gemspec

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "rcee"
5-
spec.version = "0.4.0"
5+
spec.version = "0.5.0"
66
spec.authors = ["Mike Dalessio"]
77
spec.email = ["[email protected]"]
88

@@ -12,9 +12,9 @@ Gem::Specification.new do |spec|
1212
spec.required_ruby_version = ">= 2.6.0"
1313
spec.license = "MIT"
1414

15-
spec.add_dependency "rcee_isolated", "= 0.4.0"
16-
spec.add_dependency "rcee_packaged_source", "= 0.4.0"
17-
spec.add_dependency "rcee_packaged_tarball", "= 0.4.0"
18-
spec.add_dependency "rcee_precompiled", "= 0.4.0"
19-
spec.add_dependency "rcee_system", "= 0.4.0"
15+
spec.add_dependency "rcee_isolated", "= 0.5.0"
16+
spec.add_dependency "rcee_packaged_source", "= 0.5.0"
17+
spec.add_dependency "rcee_packaged_tarball", "= 0.5.0"
18+
spec.add_dependency "rcee_precompiled", "= 0.5.0"
19+
spec.add_dependency "rcee_system", "= 0.5.0"
2020
end

system/lib/rcee/system/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33
module RCEE
44
module System
5-
VERSION = "0.4.0"
5+
VERSION = "0.5.0"
66
end
77
end

0 commit comments

Comments
 (0)