Skip to content

Commit

Permalink
version bump to v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flavorjones committed May 19, 2022
1 parent 2f30140 commit 63862e7
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 13 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## 0.4.0 / 2022-05-19

### Added

- `precompiled` gem now supports the `arm-linux` platform.


## 0.3.0 / 2021-11-08

### Fixed

- `precompiled` gem now builds correctly when compiling form source on Windows
- `precompiled` gem now builds correctly when compiling from source on Windows.


### Added
Expand Down
2 changes: 1 addition & 1 deletion isolated/lib/rcee/isolated/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RCEE
module Isolated
VERSION = "0.3.0"
VERSION = "0.4.0"
end
end
2 changes: 1 addition & 1 deletion packaged_source/lib/rcee/packaged_source/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RCEE
module PackagedSource
VERSION = "0.3.0"
VERSION = "0.4.0"
end
end
2 changes: 1 addition & 1 deletion packaged_tarball/lib/rcee/packaged_tarball/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RCEE
module PackagedTarball
VERSION = "0.3.0"
VERSION = "0.4.0"
end
end
2 changes: 1 addition & 1 deletion precompiled/lib/rcee/precompiled/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RCEE
module Precompiled
VERSION = "0.3.0"
VERSION = "0.4.0"
end
end
14 changes: 7 additions & 7 deletions rcee.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

Gem::Specification.new do |spec|
spec.name = "rcee"
spec.version = "0.3.0"
spec.version = "0.4.0"
spec.authors = ["Mike Dalessio"]
spec.email = ["[email protected]"]

spec.summary = "Meta-gem to install all example gems in the RCEE suite."
spec.description = "Part of a project to explain how Ruby C extensions work."
spec.homepage = "https://github.com/flavorjones/ruby-c-extensions-explained"
spec.required_ruby_version = ">= 2.4.0"
spec.required_ruby_version = ">= 2.6.0"
spec.license = "MIT"

spec.add_dependency "rcee_isolated", "= 0.3.0"
spec.add_dependency "rcee_packaged_source", "= 0.3.0"
spec.add_dependency "rcee_packaged_tarball", "= 0.3.0"
spec.add_dependency "rcee_precompiled", "= 0.3.0"
spec.add_dependency "rcee_system", "= 0.3.0"
spec.add_dependency "rcee_isolated", "= 0.4.0"
spec.add_dependency "rcee_packaged_source", "= 0.4.0"
spec.add_dependency "rcee_packaged_tarball", "= 0.4.0"
spec.add_dependency "rcee_precompiled", "= 0.4.0"
spec.add_dependency "rcee_system", "= 0.4.0"
end
2 changes: 1 addition & 1 deletion system/lib/rcee/system/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module RCEE
module System
VERSION = "0.3.0"
VERSION = "0.4.0"
end
end

0 comments on commit 63862e7

Please sign in to comment.