Skip to content

Commit

Permalink
Bump version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahTheDuke committed Oct 3, 2024
1 parent 2936893 commit d57a150
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 1.0.0

Released `2024-10-03`.

### Changed

- Rewrite internals to use nested maps instead of nested sequences and functions. Suites (and `:lazytest/run`s and `:lazytest/ns`es) have `:children`, which can be other suites or test cases.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Add it to your deps.edn or project.clj:

```clojure
{:aliases
{:test {:extra-deps {io.github.noahtheduke/lazytest {:mvn/version "0.5.0"}}
{:test {:extra-deps {io.github.noahtheduke/lazytest {:mvn/version "1.0.0"}}
:extra-paths ["test"]
:main-opts ["-m" "lazytest.main"]}}}
```
Expand Down
2 changes: 1 addition & 1 deletion resources/LAZYTEST_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
1.0.0
5 changes: 2 additions & 3 deletions src/clojure/lazytest/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,8 @@
(defmacro given
"DEPRECATED: No longer needed. Use a normal `let`, please.
Like 'let' but returns the expressions of body in a vector.
Suitable for nesting inside 'describe'."
{:deprecated "<<next>>"}
Alias for 'let'."
{:deprecated "1.0.0"}
[bindings & body]
`(let ~bindings
~@body))
Expand Down

0 comments on commit d57a150

Please sign in to comment.