Skip to content

Commit

Permalink
update version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rt-nicholas-volk committed Apr 13, 2021
1 parent 1411985 commit 03dc2d6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject rtcritical/rtengine "1.0.0"
(defproject rtcritical/rtengine "1.0.1"
:description "Minimal clojure service engine that allows deploying single file services at runtime with their own isolated dependencies. Dependencies are downloaded as necessary. Multiple versions of a service can coexist in the system and be individually ran."
:url "https://github.com/RTCritical/RTEngine"
:license {:name "MIT"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
(ns rtengine.test-services.simple-division)
;;; simple test service. extra comments up here to ensure file parses
;;; correctly
(ns rtengine.test-services.simple-division
{:dependencies '[[org.clojure/clojure "1.9.0"] ; clojure is a required dep
[medley "1.0.0"] ;; not needed, but testing parsing
;; correctly with comments
]})

(defn simple-division
"Service divides two numbers"
{:dependencies '[[org.clojure/clojure "1.9.0"]]}
[{:keys [dividend divisor]
:or {dividend 1
divisor 1}}]
Expand Down

0 comments on commit 03dc2d6

Please sign in to comment.