libis-workflow 2.1.16 → 2.1.17

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: 29a24d93fb0727e644395784d7fffe594f105c8037eac8268d4c0154ab6a4620
4
- data.tar.gz: 8e14dc2c88f6d2e07cc7e9d1ce3a297a5d2d076529466f97310e83b31c073ffb
3
+ metadata.gz: b7fc5d45cf7f3b2e239992dbb91c791fa67b7a73bdf4fafaf1991fca478af977
4
+ data.tar.gz: ba6e5e9d0bdb6802f2b2014bb17883a03aca5534ebed59462ed256ce16d58b38
5
5
  SHA512:
6
- metadata.gz: 612736ce0bd4b328dc0ae139d12d0d22a8490a14fd4d7b437fce2eee90785f216b259640db89766ce61db7bf0501da36b562d9fdb7704437ece529418182c879
7
- data.tar.gz: 10d72ed0fed3618006cd3da4a2243550408755de48083bb7d770eec28cb06904c8a3d7cdfd4a91d81c409a8dd6d764b364e750a5ab32cbe410aa2c49dac355f4
6
+ metadata.gz: 5856f99fa6378ab2e93b342e797d64ca1629bd1e4b2e801d8a22a7c99224574b6ee710d0589cbd1e1a9911a223ed464f35523515fed42bcdbf941b990e2ca7bf
7
+ data.tar.gz: '058903de0b0b113f797f35696b3ed080dff77c746de2db0c74a5513e7ef2f5dae067fc8945486d627589079a089fabb4b96c1a22ff25845a8747bde9d85f9f0a'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [v2.1.17](https://github.com/libis/workflow/tree/v2.1.17) (25/10/2024)
4
+
5
+ [Full Changelog](https://github.com/libis/workflow/compare/v2.1.16...v2.1.17)
6
+
7
+ ## [v2.1.16](https://github.com/libis/workflow/tree/v2.1.16) (24/04/2024)
8
+
9
+ [Full Changelog](https://github.com/libis/workflow/compare/v2.1.15...v2.1.16)
10
+
3
11
  ## [v2.1.15](https://github.com/libis/workflow/tree/v2.1.15) (27/11/2023)
4
12
 
5
13
  [Full Changelog](https://github.com/libis/workflow/compare/v2.1.14...v2.1.15)
data/Makefile ADDED
@@ -0,0 +1,21 @@
1
+ -include .env
2
+ export
3
+
4
+ VERSION=$(shell ruby -e "require_relative 'lib/libis/workflow/version'; puts Libis::Workflow::VERSION")
5
+
6
+ .SILENT:
7
+
8
+ .PHONY: release
9
+
10
+ changelog:
11
+ rake changelog
12
+ git commit -a -m "Changelog update" || true
13
+ git push
14
+
15
+ version_bump:
16
+ echo "Gem version: v$(VERSION)"
17
+ git commit -am "Version bump: v$(VERSION)" || true
18
+ git tag --force "v$(VERSION)"
19
+ git push --tags
20
+
21
+ release: version_bump changelog
@@ -253,7 +253,7 @@ module Libis
253
253
  results = Hash.new(0)
254
254
  self.tasks.each { |subtask| results[item.status(subtask.namepath)] += 1 }
255
255
  [:FAILED, :ASYNC_WAIT, :ASYNC_HALT].each { |status| return status if results[status] > 0 }
256
- return :FAILED if results[:STARTED] > 1
256
+ return :STARTED if results[:STARTED] > 0
257
257
  :DONE
258
258
  end
259
259
 
@@ -1,5 +1,5 @@
1
1
  module Libis
2
2
  module Workflow
3
- VERSION = '2.1.16' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
3
+ VERSION = '2.1.17' unless const_defined? :VERSION # the guard is against a redefinition warning that happens on Travis
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libis-workflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.16
4
+ version: 2.1.17
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kris Dekeyser
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-24 00:00:00.000000000 Z
11
+ date: 2024-10-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: libis-tools
@@ -107,6 +107,7 @@ files:
107
107
  - CHANGELOG.md
108
108
  - Gemfile
109
109
  - LICENSE
110
+ - Makefile
110
111
  - README.md
111
112
  - Rakefile
112
113
  - lib/libis-workflow.rb
@@ -150,7 +151,7 @@ homepage: https://github.com/libis/workflow
150
151
  licenses:
151
152
  - MIT
152
153
  metadata: {}
153
- post_install_message:
154
+ post_install_message:
154
155
  rdoc_options: []
155
156
  require_paths:
156
157
  - lib
@@ -165,8 +166,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
165
166
  - !ruby/object:Gem::Version
166
167
  version: '0'
167
168
  requirements: []
168
- rubygems_version: 3.4.19
169
- signing_key:
169
+ rubygems_version: 3.5.22
170
+ signing_key:
170
171
  specification_version: 4
171
172
  summary: LIBIS Workflow framework.
172
173
  test_files: