Skip to content

Commit db77bae

Browse files
committed
release: 3.4.5-0.3.5
2 parents 6220226 + 2eefd07 commit db77bae

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,10 @@ lein test
9494

9595
## Changelog
9696

97-
### 3.4.5-0.3.1/2
97+
### 3.4.5-0.3.5
9898

99-
- Schema Fix
99+
- Added unsafe executor function
100+
- - Schema Fix
100101

101102
### 3.4.5-0.2.0
102103

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject io.trosa/argoj "3.4.5-0.3.4"
1+
(defproject io.trosa/argoj "3.4.5-0.3.5"
22
:description "Data-Oriented, pure Clojure API wrapper for Argo Workflow"
33
:url "https://github.com/iomonad/argoj"
44
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"

src/argoj/api.clj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,14 @@
8888
(workflow/workflow-service-create-workflow ns workflow-spec)))
8989

9090

91+
(defn create-workflow!
92+
"Create a new workflow, without spec validation"
93+
{:added "0.3.5"}
94+
[spec ns workflow-spec]
95+
(with-api-context spec
96+
(workflow/workflow-service-create-workflow ns workflow-spec)))
97+
98+
9199
(defn delete-workflow
92100
"Delete an existing Workflow"
93101
{:added "0.1.0"}

0 commit comments

Comments
 (0)