Skip to content

Commit

Permalink
Prepping for next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdantonio committed Aug 19, 2015
1 parent b36de96 commit 6618ddb
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
### Upcoming Release v1.0.0 (TBD)
## Current Release v1.0.0.pre1 (19 Aug 2015)

* Merged in the `thread_safe` gem
- `Concurrent::Array`
- `Concurrent::Hash`
- `Concurrent::Map` (formerly ThreadSafe::Cache)
- `Concurrent::Tuple`
* Minor improvements to Concurrent::Map
* Complete rewrite of `Exchanger`
* Removed all deprecated code (classes, methods, constants, etc.)
* Updated Agent, MutexAtomic, and BufferedChannel to inherit from Synchronization::Object.
* Many improved tests
* Some internal reorganization

## Current Release v0.9.1 (09 August 2015)
### Release v0.9.1 (09 August 2015)

* Fixed a Rubiniux bug in synchronization object
* Fixed all interpreter warnings (except circular references)
Expand Down
4 changes: 2 additions & 2 deletions concurrent-ruby-ext.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Gem::Specification.new do |s|
s.name = 'concurrent-ruby-ext'
s.version = Concurrent::VERSION
s.platform = Gem::Platform::RUBY
s.author = "Jerry D'Antonio"
s.email = '[email protected]'
s.authors = ["Jerry D'Antonio", 'The Ruby Concurrency Team']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://www.concurrent-ruby.com'
s.summary = 'C extensions to optimize concurrent-ruby under MRI.'
s.license = 'MIT'
Expand Down
2 changes: 1 addition & 1 deletion support/file_map.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module FileMap
CORE_LIB_FILES = ALL_LIB_FILES - EDGE_LIB_FILES

MAP = {
core: CORE_LIB_FILES + %w(lib/concurrent.rb lib/concurrent_ruby.rb),
core: CORE_LIB_FILES + %w(lib/concurrent.rb),
edge: EDGE_LIB_FILES + %w(lib/concurrent-edge.rb)
}
end

0 comments on commit 6618ddb

Please sign in to comment.