Skip to content

Commit 9ae4615

Browse files
committed
added changelog, bumped version to 0.3.0
1 parent 616a96b commit 9ae4615

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Changelog
2+
3+
## 0.3.0
4+
5+
- Public release.

README.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,23 @@ Clojure 1.7.0 and/or ClojureScript 1.7.28 or higher.
2222
Add this to your dependencies in project.clj:
2323

2424
```clj
25-
[clj-fakes "0.3.0-SNAPSHOT"]
25+
[clj-fakes "0.3.0"]
26+
```
27+
28+
Require framework namespace in your unit test source file:
29+
30+
```clj
31+
; Clojure
32+
(ns unit.example
33+
(:require
34+
; ...
35+
[clj-fakes.core :as f]))
36+
37+
; ClojureScript
38+
(ns unit.example
39+
(:require
40+
; ...
41+
[clj-fakes.core :as f :include-macros true]))
2642
```
2743

2844
## Examples
@@ -76,7 +92,12 @@ Add this to your dependencies in project.clj:
7692
```
7793

7894
## Documentation
79-
More documentation can be found at [the project site](http://metametadata.github.io/clj-fakes/).
95+
More documentation can be found at [the project site](http://metametadata.github.io/clj-fakes/):
96+
97+
* [Quickstart](http://metametadata.github.io/clj-fakes/quickstart/)
98+
* [User Guide](http://metametadata.github.io/clj-fakes/user-guide/)
99+
* [API Reference](http://metametadata.github.io/clj-fakes/api/)
100+
* [Developer Guide](http://metametadata.github.io/clj-fakes/dev-guide/)
80101

81102
## License
82103
Copyright © 2015 Yuri Govorushchenko.

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject clj-fakes "0.3.0-SNAPSHOT"
1+
(defproject clj-fakes "0.3.0"
22
:description "An isolation framework for Clojure/ClojureScript. It makes creating mocks and stubs for unit testing much easier."
33
:url "https://github.com/metametadata/clj-fakes"
44
:license {:name "MIT" :url "http://opensource.org/licenses/MIT"}

0 commit comments

Comments
 (0)