Skip to content

Commit

Permalink
Updated project.clj, release notes and readme for 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoduncan committed Mar 4, 2012
1 parent 232a316 commit 6a6e9df
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
31 changes: 28 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,37 @@ To use in your project add the following to your project.clj `:dependencies`:
[swell "0.1.0-SNAPSHOT"]
```

## Status
## project.clj

Not released yet.
Swell is released to clojars. To use in your project, add the following to your
`dependencies`:

```clj
[swell "0.1.0"]
```

## pom.xml
To use in your pom, add the following to your `<dependencies>`:

```xml
<dependency>
<groupId>swell</groupId>
<artifactId>swell</artifactId>
<version>0.1.0</version>
</dependency>
```

and the following to your `<repositories>`:

``` xml
<repository>
<id>clojars</id>
<url>http://clojars.org/repo</url>
</repository>
```

## License

Copyright (C) 2011 Hugo Duncan
Copyright (C) 2011, 2012 Hugo Duncan

Distributed under the Eclipse Public License.
7 changes: 7 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Release Notes

The current version is 0.1.0

## 0.1.0

Initial release
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject swell "0.1.0-SNAPSHOT"
(defproject swell "0.1.0"
:description "A CL style restart library for clojure"
:dependencies [[org.clojure/clojure "1.2.1"]
[slingshot "0.5.0"]]
Expand Down

0 comments on commit 6a6e9df

Please sign in to comment.