laminar 0.6.0 → 0.7.0

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
  SHA256:
3
- metadata.gz: ea86f0c10d91bc035b654382cc02a5d3fe66201f29c7f68c59c5ea775089cc87
4
- data.tar.gz: a2c93e7cd9b38caa0049d13686dba98b96753147257abc0f7ec12c80494b498f
3
+ metadata.gz: ea3e3d103dc6aa3041a22d958a120a73c7fa526f5dcbfc74b8f19503194362a6
4
+ data.tar.gz: 98289c18df72debb00c6df9877bae3262a6f6fda7d56b44197e09c6e9a980a2d
5
5
  SHA512:
6
- metadata.gz: 803fb931223366209b3146a501580950649bdecf3006677dd28838dfc214bc82623bcf1b9c504710e5f921e1630fa03aa60f4840775ce4ca4655a4ea1764e410
7
- data.tar.gz: 333b5fac15453582b529e7dd00b6f62ef4b70a815b95109224f0219932e48a54f91b0abea4576ce7a0e626e23809f78c0e090868fa7f08b7e8370e76fd6bcc12
6
+ metadata.gz: 9b04f54ca23f10321e112675c6ddefdfbede105a744304e9fd969580145b32293ae5e52a9c8e78ffb8a4f1b65ed9bbabf0f660604e84609fcd7c6e2403ec1462
7
+ data.tar.gz: 8289147544e03879303d68d86f4f171461ceea552fc81feba510b9caced6dcca50e1ed7c088cffd1459d31658e06cf0c86ba81708db8cfd216e80ca21e811ab5
@@ -1,9 +1,14 @@
1
1
  # Changelog
2
2
 
3
- ## [v0.6.0](https://github.com/rmlockerd/laminar/tree/v0.6.0) (2020-04-15)
3
+ ## [v0.7.0](https://github.com/rmlockerd/laminar/tree/v0.7.0) (2020-06-13)
4
+
5
+ [Full Changelog](https://github.com/rmlockerd/laminar/compare/v0.6.0...v0.7.0)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Fix 3.0-compatibility warnings with Ruby 2.7.x [\#13](https://github.com/rmlockerd/laminar/issues/13)
4
10
 
5
- - Add 'finalize' callback on particles and flows that is called after
6
- invocation finishes, regardless of whether particle halted.
11
+ ## [v0.6.0](https://github.com/rmlockerd/laminar/tree/v0.6.0) (2020-04-15)
7
12
 
8
13
  [Full Changelog](https://github.com/rmlockerd/laminar/compare/v0.5.1...v0.6.0)
9
14
 
@@ -44,7 +44,7 @@ module Laminar
44
44
  return context if context.halted?
45
45
 
46
46
  param_list = context_slice
47
- param_list.empty? ? call : call(context_slice)
47
+ param_list.empty? ? call : call(**context_slice)
48
48
  run_after_callbacks unless context.halted?
49
49
  rescue ParticleStopped
50
50
  run_final_callbacks
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Laminar
4
- VERSION = '0.6.0'
4
+ VERSION = '0.7.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: laminar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Lockerd
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-04-15 00:00:00.000000000 Z
11
+ date: 2020-06-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport