concurrent-ruby-ext 1.0.0.pre2 → 1.0.0.pre3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +14 -2
  3. data/README.md +7 -5
  4. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d6be8e85065d685bf7042c30283a4cfa73f8641
4
- data.tar.gz: a2be66760d1bc25898e5f7ded1537b461d086054
3
+ metadata.gz: 38be715a2b5d3be4b418ca7e32e9c44dc5e362a5
4
+ data.tar.gz: ca9d55a39cabd00f74124b1309f12fa8b12feff2
5
5
  SHA512:
6
- metadata.gz: 7ef7a33699d61a1cc849235287a3fdf820cfde78dd7d54661e887c8e8442b241d4819eaf8c2abf66f222c5b48190b6b130d949660041563eea4cd3df3817c455
7
- data.tar.gz: 342cacece9ba9eb29534007a138b54ece465215d4b8896bf1b88814c1790eb8a98c4b91f3c4d96d1e72f4dfe80fd682641535b800723bfc51c8a8235c3f39d07
6
+ metadata.gz: 9d88b5737a17f359e18d27a0f6f766fa137a29ee92e9b1a3d36da08cc5a16d020b59428057990fdc4a0b12e02b56a72393ec9d22a67d93daed6908176f9e54c4
7
+ data.tar.gz: 9cc33a88290ef4868f81e5eb93465ae166f9056e731722e2fe6d94a544f2141ec14e80ca0babccb0fd556144545366ef118705bd362abc1352ad343290510c5a
data/CHANGELOG.md CHANGED
@@ -1,4 +1,15 @@
1
- ## Current Release v1.0.0.pre2 (19 September 2015)
1
+ ### Upcoming Release v1.0.0 (TBD)
2
+
3
+ ## Current Release v1.0.0.pre3 (29 September 2015)
4
+
5
+ * Removed interpreter warnings.
6
+ * Shared constants now in `lib/concurrent/constants.rb`
7
+ * Refactored many tests.
8
+ * Improved synchronization layer/memory model documentation.
9
+ * Bug fix in Edge `Future#flat`
10
+ * Brand new `Channel` implementation in Edge gem.
11
+
12
+ ### Release v1.0.0.pre2 (19 September 2015)
2
13
 
3
14
  * Simplification of `RubySingleThreadExecutor`
4
15
  * `Async` improvements
@@ -10,8 +21,9 @@
10
21
  - Now `Observable`
11
22
  - Added a `#reset` method
12
23
  * Brand new `Agent` API and implementation. Now functionally equivalent to Clojure.
24
+ * Continued improvements to the synchronization layer
13
25
 
14
- ### Current Release v1.0.0.pre1 (19 August 2015)
26
+ ### Release v1.0.0.pre1 (19 August 2015)
15
27
 
16
28
  * Merged in the `thread_safe` gem
17
29
  - `Concurrent::Array`
data/README.md CHANGED
@@ -130,8 +130,10 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
130
130
  `Promise`, `IVar`, `Event`, `dataflow`, `Delay`, and `TimerTask` into a single framework. It extensively uses the
131
131
  new synchronization layer to make all the features **non-blocking** and **lock-free**, with the exception of obviously blocking
132
132
  operations like `#wait`, `#value`. It also offers better performance.
133
- * [Channel](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Channel.html):
134
- Communicating Sequential Processes (CSP).
133
+ * [Channel](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/Channel.html):
134
+ Communicating Sequential Processes ([CSP](https://en.wikipedia.org/wiki/Communicating_sequential_processes)).
135
+ Functionally equivalent to Go [channels](https://tour.golang.org/concurrency/2) with additional
136
+ inspiration from Clojure [core.async](https://clojure.github.io/core.async/).
135
137
  * [LazyRegister](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/LazyRegister.html)
136
138
  * [AtomicMarkableReference](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/AtomicMarkableReference.html)
137
139
  * [LockFreeLinkedSet](http://ruby-concurrency.github.io/concurrent-ruby/Concurrent/Edge/LockFreeLinkedSet.html)
@@ -142,10 +144,10 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
142
144
  *Why are these not in core?*
143
145
 
144
146
  - **Actor** - Partial documentation and tests; depends on new future/promise framework; stability is good.
145
- - **Future/Promise Framework** - API changes; partial documentation and tests; stability good.
146
- - **Channel** - Missing documentation; limited features; stability good.
147
+ - **Channel** - Brand new implementation; partial documentation and tests; stability is good.
148
+ - **Future/Promise Framework** - API changes; partial documentation and tests; stability is good.
147
149
  - **LazyRegister** - Missing documentation and tests.
148
- - **AtomicMarkableReference, LockFreeLinkedSet, LockFreeStack** - Need real world battle testing
150
+ - **AtomicMarkableReference, LockFreeLinkedSet, LockFreeStack** - Need real world battle testing.
149
151
 
150
152
  ## Usage
151
153
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: concurrent-ruby-ext
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre2
4
+ version: 1.0.0.pre3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jerry D'Antonio
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-09-19 00:00:00.000000000 Z
12
+ date: 2015-09-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: concurrent-ruby
@@ -17,14 +17,14 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 1.0.0.pre2
20
+ version: 1.0.0.pre3
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 1.0.0.pre2
27
+ version: 1.0.0.pre3
28
28
  description: |2
29
29
  C extensions to optimize the concurrent-ruby gem when running under MRI.
30
30
  Please see http://concurrent-ruby.com for more information.
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: 1.3.1
76
76
  requirements: []
77
77
  rubyforge_project:
78
- rubygems_version: 2.4.5.1
78
+ rubygems_version: 2.4.8
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: C extensions to optimize concurrent-ruby under MRI.