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

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f399a4578591c98f870c437d8cf0e72a366d40f2
4
- data.tar.gz: 8dfa1fa0ac51092edce644fdce7bf17679fe436d
3
+ metadata.gz: 37e539804e90a3130d1ead7b1e4bfc0204994438
4
+ data.tar.gz: 9bb0d07d104ae91b41365a190fae5ed8223c6c42
5
5
  SHA512:
6
- metadata.gz: bf56b5828dc40a09d44402d5c127aafe839c82d3209fde07545b5daf9b258190ae75d778b7a9571f25e8eb63c0414fd09543e0b240f20fb520b554d2bed9cbdc
7
- data.tar.gz: 70a702c9b5e36395a0c81290f7d94d2728e910a5366a2eaf661110ef1d4e4de30a97d2bef77c1f8e8f7701050e4a84e864610de74de7111c577b5ca1c239bf2e
6
+ metadata.gz: aff76ff075389b77319375fb4497e6e96a5fa0536b09e0fb25763bf7e26f96be48446f6278db448e92cbfc1759bf4764cb55ffddfea6c87552909626548c66e1
7
+ data.tar.gz: acb5ba1e5c9174e21fc4eb5b5fd8355f2ca7112f23fb0040e9009497cbbffa6af30c134377c3b23bbaadb46850566a3bfc09324a6d98b926852f1bb74a602b28
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
 
Binary file
Binary file
Binary file
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: x64-mingw32
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-30 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.