Skip to content

Commit 6618ddb

Browse files
committed
Prepping for next release.
1 parent b36de96 commit 6618ddb

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
1-
### Upcoming Release v1.0.0 (TBD)
1+
## Current Release v1.0.0.pre1 (19 Aug 2015)
22

3+
* Merged in the `thread_safe` gem
4+
- `Concurrent::Array`
5+
- `Concurrent::Hash`
6+
- `Concurrent::Map` (formerly ThreadSafe::Cache)
7+
- `Concurrent::Tuple`
8+
* Minor improvements to Concurrent::Map
9+
* Complete rewrite of `Exchanger`
310
* Removed all deprecated code (classes, methods, constants, etc.)
411
* Updated Agent, MutexAtomic, and BufferedChannel to inherit from Synchronization::Object.
12+
* Many improved tests
13+
* Some internal reorganization
514

6-
## Current Release v0.9.1 (09 August 2015)
15+
### Release v0.9.1 (09 August 2015)
716

817
* Fixed a Rubiniux bug in synchronization object
918
* Fixed all interpreter warnings (except circular references)

concurrent-ruby-ext.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Gem::Specification.new do |s|
66
s.name = 'concurrent-ruby-ext'
77
s.version = Concurrent::VERSION
88
s.platform = Gem::Platform::RUBY
9-
s.author = "Jerry D'Antonio"
10-
s.email = 'jerry.dantonio@gmail.com'
9+
s.authors = ["Jerry D'Antonio", 'The Ruby Concurrency Team']
10+
s.email = ['jerry.dantonio@gmail.com', 'concurrent-ruby@googlegroups.com']
1111
s.homepage = 'http://www.concurrent-ruby.com'
1212
s.summary = 'C extensions to optimize concurrent-ruby under MRI.'
1313
s.license = 'MIT'

support/file_map.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module FileMap
1111
CORE_LIB_FILES = ALL_LIB_FILES - EDGE_LIB_FILES
1212

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

0 commit comments

Comments
 (0)