Skip to content

Commit

Permalink
Merge tag 'stevedore-0.8.0-beta.5' into develop
Browse files Browse the repository at this point in the history
pallet-stevedore-0.8.0-beta.5
  • Loading branch information
hugoduncan committed Sep 20, 2013
2 parents 01b75bb + 990c38c commit e56b003
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -19,7 +19,7 @@ Installation is with lein or your favourite maven repository aware build tool.
### lein project.clj

```clj
:dependencies [[com.palletops/stevedore "0.8.0-beta.4"]]
:dependencies [[com.palletops/stevedore "0.8.0-beta.5"]]
```

### maven pom.xml
Expand All @@ -29,7 +29,7 @@ Installation is with lein or your favourite maven repository aware build tool.
<dependency>
<groupId>com.palletops</groupId>
<artifactId>stevedore</artifactId>
<version>0.8.0-beta.4</version>
<version>0.8.0-beta.5</version>
</dependency>
<dependencies>

Expand Down
10 changes: 9 additions & 1 deletion ReleaseNotes.md
Expand Up @@ -2,6 +2,14 @@

The latest stable release is 0.7.3.

## 0.8.0-beta.5

- Allow vector values in map-to-arg-string
In pallet.stevedore/map-to-arg-string, make keys with vector values result
in having the switch repeated for each value in the vector.

- Support using multimethods as script functions

## 0.8.0-beta.4

- Use {} for grouping of negation expressions
Expand Down Expand Up @@ -33,7 +41,7 @@ The latest stable release is 0.7.3.
- Use leiningen instead of maven

- Symbols in argument position are resolved
This removes the need to deref script functions. Script functions are
This removes the need to deref script functions. Script functions are
now regular functions, with a custom dispatch mechanism. Plain clojure
functions can now be used as script functions.

Expand Down
2 changes: 1 addition & 1 deletion project.clj
@@ -1,4 +1,4 @@
(defproject com.palletops/stevedore "0.8.0-SNAPSHOT"
(defproject com.palletops/stevedore "0.8.0-beta.5"
:description "Embeds shell script in clojure"
:url "http://palletops.com"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit e56b003

Please sign in to comment.