Skip to content

Commit

Permalink
Updated project.clj, release notes and readme for 0.8.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoduncan committed Mar 16, 2013
1 parent 0b10d79 commit 0cee233
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
18 changes: 8 additions & 10 deletions README.md
Expand Up @@ -10,33 +10,31 @@ See [tests](https://github.com/pallet/stevedore/tree/develop/test/pallet/stevedo
## Installation

stevedore is distributed as a jar, and is available in the
[sonatype repository](http://oss.sonatype.org/content/repositories/releases/org/cloudhoist).
[clojars repository](http://clojars.org/com.palletops/stevedore).

Installation is with maven or your favourite maven repository aware build tool.
Installation is with lein or your favourite maven repository aware build tool.

### lein/cake project.clj
### lein project.clj

```clj
:dependencies [[org.cloudhoist/stevedore "0.8.0-beta.1"]]
:repositories {"sonatype"
"http://oss.sonatype.org/content/repositories/releases"}
:dependencies [[com.palletops/stevedore "0.8.0-beta.2"]]
```

### maven pom.xml

```xml
<dependencies>
<dependency>
<groupId>org.cloudhoist</groupId>
<groupId>com.palletops</groupId>
<artifactId>stevedore</artifactId>
<version>0.8.0-beta.1</version>
<version>0.8.0-beta.2</version>
</dependency>
<dependencies>

<repositories>
<repository>
<id>sonatype</id>
<url>http://oss.sonatype.org/content/repositories/releases</url>
<id>clojars</id>
<url>http://clojars.org/repo</url>
</repository>
</repositories>
```
Expand Down
8 changes: 8 additions & 0 deletions ReleaseNotes.md
Expand Up @@ -2,6 +2,14 @@

The latest stable release is 0.7.3.

## 0.8.0-beta.2

- Allow mulitple arguments to quote

- Remove reflection warnings

- Fix unquote splicing

## 0.8.0-beta.1

- Change groupID to com.palletops
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.2"
:description "Embeds shell script in clojure"
:url "http://palletops.com"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit 0cee233

Please sign in to comment.