finite_machine 0.13.0 → 0.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15958842bd437354dba874d9b4a50ade99a2a41f4bc12353ccfd8154e391a367
4
- data.tar.gz: 66f77251b336d802430769a83e635b4b52d689ac202d45a52b9aaec8b7fa8ff2
3
+ metadata.gz: d237cab6b48c16f3dbf2832706984e2b511f412085a11968504e23d154448e21
4
+ data.tar.gz: 48c5b0536832254ea609fd0047cb30efbd129b68b091ab462abb170a435b4fd8
5
5
  SHA512:
6
- metadata.gz: 2e53a7002f0f60cbf2d68ccf2b3eae07674fafd4cfb831837f52e20589696d0f4e6476d83a1565b1eb615acf0e2cec7c614001c64f5b95b0ed9aa9ad677d40b3
7
- data.tar.gz: d757f96ae40c372b720de43d3fd5db175e30b09d78fd3eb8b48042db5aafd1d14c3472e06f61ce9170f7f33fdc314674e6f0abb9d5b196759dec1ecec478563a
6
+ metadata.gz: f27fb87731702dc2df9b24d7a4da1525ec7bce7b432a49b278947010d4ff132bdd5d4c41002aebe39cbb354e03beda1c35cfabd4a2cc7f56872521688dfd3dd8
7
+ data.tar.gz: e7f3348c118d77359639ad5909048404bcdb7abbc14e775288cb07f8f7681141cb5a6252a4f0c377a7f9e32dc5d5f447a40c1e734f58397ef713809936e1207c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.14.1] - 2023-10-08
4
+
5
+ ### Fixed
6
+ * Fix defining object finalizer in Ruby 3.1 to reference a UUID string
7
+ by Vadim Kononov(@vkononov)
8
+ * Fix message queue shutdown to raise valid error
9
+ * Fix any_event and any_state methods in the define method and definition class
10
+ * Fix hooks_map initialization to be fully thread-safe
11
+ by Maciej Mensfeld(@mensfeld)
12
+
13
+ ## [v0.14.0] - 2020-09-12
14
+
15
+ ### Added
16
+ * Add ability to declare alias target inside definition
17
+ * Add #respond_to_missing? to DSL to check if a given method is supported
18
+ * Add current state attribute to StateMachine#inspect
19
+
3
20
  ## [v0.13.0] - 2020-05-13
4
21
 
5
22
  ### Added
@@ -305,26 +322,28 @@
305
322
 
306
323
  * Initial release
307
324
 
308
- [v0.13.0]: https://github.com/peter-murach/finite_machine/compare/v0.12.1...v0.13.0
309
- [v0.12.1]: https://github.com/peter-murach/finite_machine/compare/v0.12.0...v0.12.1
310
- [v0.12.0]: https://github.com/peter-murach/finite_machine/compare/v0.11.3...v0.12.0
311
- [v0.11.3]: https://github.com/peter-murach/finite_machine/compare/v0.11.2...v0.11.3
312
- [v0.11.2]: https://github.com/peter-murach/finite_machine/compare/v0.11.1...v0.11.2
313
- [v0.11.1]: https://github.com/peter-murach/finite_machine/compare/v0.11.0...v0.11.1
314
- [v0.11.0]: https://github.com/peter-murach/finite_machine/compare/v0.10.2...v0.11.0
315
- [v0.10.2]: https://github.com/peter-murach/finite_machine/compare/v0.10.1...v0.10.2
316
- [v0.10.1]: https://github.com/peter-murach/finite_machine/compare/v0.10.0...v0.10.1
317
- [v0.10.0]: https://github.com/peter-murach/finite_machine/compare/v0.9.2...v0.10.0
318
- [v0.9.2]: https://github.com/peter-murach/finite_machine/compare/v0.9.1...v0.9.2
319
- [v0.9.1]: https://github.com/peter-murach/finite_machine/compare/v0.9.0...v0.9.1
320
- [v0.9.0]: https://github.com/peter-murach/finite_machine/compare/v0.8.1...v0.9.0
321
- [v0.8.1]: https://github.com/peter-murach/finite_machine/compare/v0.8.0...v0.8.1
322
- [v0.8.0]: https://github.com/peter-murach/finite_machine/compare/v0.7.1...v0.8.0
323
- [v0.7.1]: https://github.com/peter-murach/finite_machine/compare/v0.7.0...v0.7.1
324
- [v0.7.0]: https://github.com/peter-murach/finite_machine/compare/v0.6.1...v0.7.0
325
- [v0.6.1]: https://github.com/peter-murach/finite_machine/compare/v0.6.0...v0.6.1
326
- [v0.6.0]: https://github.com/peter-murach/finite_machine/compare/v0.5.0...v0.6.0
327
- [v0.5.0]: https://github.com/peter-murach/finite_machine/compare/v0.4.0...v0.5.0
328
- [v0.4.0]: https://github.com/peter-murach/finite_machine/compare/v0.3.0...v0.4.0
329
- [v0.3.0]: https://github.com/peter-murach/finite_machine/compare/v0.2.0...v0.3.0
330
- [v0.2.0]: https://github.com/peter-murach/finite_machine/compare/v0.1.0...v0.2.0
325
+ [v0.14.1]: https://github.com/piotrmurach/finite_machine/compare/v0.14.0...v0.14.1
326
+ [v0.14.0]: https://github.com/piotrmurach/finite_machine/compare/v0.13.0...v0.14.0
327
+ [v0.13.0]: https://github.com/piotrmurach/finite_machine/compare/v0.12.1...v0.13.0
328
+ [v0.12.1]: https://github.com/piotrmurach/finite_machine/compare/v0.12.0...v0.12.1
329
+ [v0.12.0]: https://github.com/piotrmurach/finite_machine/compare/v0.11.3...v0.12.0
330
+ [v0.11.3]: https://github.com/piotrmurach/finite_machine/compare/v0.11.2...v0.11.3
331
+ [v0.11.2]: https://github.com/piotrmurach/finite_machine/compare/v0.11.1...v0.11.2
332
+ [v0.11.1]: https://github.com/piotrmurach/finite_machine/compare/v0.11.0...v0.11.1
333
+ [v0.11.0]: https://github.com/piotrmurach/finite_machine/compare/v0.10.2...v0.11.0
334
+ [v0.10.2]: https://github.com/piotrmurach/finite_machine/compare/v0.10.1...v0.10.2
335
+ [v0.10.1]: https://github.com/piotrmurach/finite_machine/compare/v0.10.0...v0.10.1
336
+ [v0.10.0]: https://github.com/piotrmurach/finite_machine/compare/v0.9.2...v0.10.0
337
+ [v0.9.2]: https://github.com/piotrmurach/finite_machine/compare/v0.9.1...v0.9.2
338
+ [v0.9.1]: https://github.com/piotrmurach/finite_machine/compare/v0.9.0...v0.9.1
339
+ [v0.9.0]: https://github.com/piotrmurach/finite_machine/compare/v0.8.1...v0.9.0
340
+ [v0.8.1]: https://github.com/piotrmurach/finite_machine/compare/v0.8.0...v0.8.1
341
+ [v0.8.0]: https://github.com/piotrmurach/finite_machine/compare/v0.7.1...v0.8.0
342
+ [v0.7.1]: https://github.com/piotrmurach/finite_machine/compare/v0.7.0...v0.7.1
343
+ [v0.7.0]: https://github.com/piotrmurach/finite_machine/compare/v0.6.1...v0.7.0
344
+ [v0.6.1]: https://github.com/piotrmurach/finite_machine/compare/v0.6.0...v0.6.1
345
+ [v0.6.0]: https://github.com/piotrmurach/finite_machine/compare/v0.5.0...v0.6.0
346
+ [v0.5.0]: https://github.com/piotrmurach/finite_machine/compare/v0.4.0...v0.5.0
347
+ [v0.4.0]: https://github.com/piotrmurach/finite_machine/compare/v0.3.0...v0.4.0
348
+ [v0.3.0]: https://github.com/piotrmurach/finite_machine/compare/v0.2.0...v0.3.0
349
+ [v0.2.0]: https://github.com/piotrmurach/finite_machine/compare/v0.1.0...v0.2.0
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014 Piotr Murach
1
+ Copyright (c) 2014 Piotr Murach (piotrmurach.com)
2
2
 
3
3
  MIT License
4
4