Skip to content

Commit 024528f

Browse files
committed
Prep for Alpha 2 release
1 parent 967007d commit 024528f

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
> NOTE: Clojars has introduced a [Verified Group Names policy](https://github.com/clojars/clojars-web/wiki/Verified-Group-Names) which means no new libraries can be pushed to the `expectations` group, and `doo` filters out JAR artifacts that begin `clojure-` for self-hosted ClojureScript environments (i.e., `planck`), continuing to use `clojure-test` for the artifact name is not viable. Accordingly, the 2.x versions of this library are published as `com.github.seancorfield/expectations`.
44
5+
# Version 2.0.0-alpha2 -- 2021-06-09
6+
7+
* Mostly a documentation refresh, compared to Alpha 1.
8+
59
# Version 2.0.0-alpha1 -- 2021-06-05
610

711
* Make `(defexpect foo)` and `(defexpect foo (bar))` match the behavior of `deftest`, without wrapping the body in `(expect ,,,)`. This is potentially breaking insofar as `(defexpect foo (produces-falsey))` would have been a failing test in 1.x but now silently just runs `(produces-falsey)` in the same way that `(deftest foo (produces-falsey))` does.

doc/getting-started-cljs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Your `deps.edn` should include this information:
2020

2121
```clojure
2222
{:aliases {:cljs-runner
23-
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha1"},
23+
{:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha2"},
2424
olical/cljs-test-runner {:mvn/version "3.7.0"},
2525
pjstadig/humane-test-output {:mvn/version "0.10.0"}},
2626
:extra-paths ["src" "test" "cljs-test-runner-out/gen"],

doc/getting-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ You can add `expectations.clojure.test` to your project with either:
88

99
```clojure
1010
;; add this to :extra-deps under a :test alias:
11-
com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha1"}
11+
com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha2"}
1212
```
1313
for `deps.edn` or:
1414

1515
```clojure
1616
;; add this to :dev-dependencies (Leiningen)
17-
[com.github.seancorfield/expectations "2.0.0-alpha1"]
17+
[com.github.seancorfield/expectations "2.0.0-alpha2"]
1818
;; or add this to :dependencies (Boot)
19-
[com.github.seancorfield/expectations "2.0.0-alpha1" :scope "test"]
19+
[com.github.seancorfield/expectations "2.0.0-alpha2" :scope "test"]
2020
```
2121
for `project.clj` or `build.boot`.
2222

@@ -186,7 +186,7 @@ Of course, you can also update the `:test` alias to add those new options into `
186186
{:test
187187
{:extra-paths ["test"]
188188
:extra-deps
189-
{com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha1"}
189+
{com.github.seancorfield/expectations {:mvn/version "2.0.0-alpha2"}
190190
io.github.cognitect-labs/test-runner
191191
{:git/url "https://github.com/cognitect-labs/test-runner"
192192
:sha "62ef1de18e076903374306060ac0e8a752e57c86"}}

pom.xml

+2-6
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.github.seancorfield</groupId>
55
<artifactId>expectations</artifactId>
6-
<version>2.0.0-alpha1</version>
6+
<version>2.0.0-alpha2</version>
77
<name>exp-clojure-test</name>
88
<description>A clojure.test-compatible version of the classic Expectations testing library.</description>
99
<url>https://github.com/clojure-expectations/clojure-test</url>
@@ -22,7 +22,7 @@
2222
<connection>scm:git:[email protected]:clojure-expectations/clojure-test.git</connection>
2323
<developerConnection>scm:git:[email protected]:clojure-expectations/clojure-test.git</developerConnection>
2424
<url>https://github.com/clojure-expectations/clojure-test</url>
25-
<tag>v2.0.0-alpha1</tag>
25+
<tag>v2.0.0-alpha2</tag>
2626
</scm>
2727
<dependencies>
2828
<dependency>
@@ -45,10 +45,6 @@
4545
<id>clojars</id>
4646
<url>https://repo.clojars.org/</url>
4747
</repository>
48-
<repository>
49-
<id>sonatype</id>
50-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
51-
</repository>
5248
</repositories>
5349
<distributionManagement>
5450
<repository>

0 commit comments

Comments
 (0)