Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
robstoll committed May 29, 2023
1 parent 40eaa11 commit cda7a53
Show file tree
Hide file tree
Showing 7 changed files with 123 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Following a few guidelines so that others can quickly benefit from your contribu

## Code of Conduct
This project and everyone participating in it is governed by Atrium's
[Code of Conduct](https://github.com/robstoll/atrium/tree/v1.0.0-RC2/.github/CODE_OF_CONDUCT.md).
[Code of Conduct](https://github.com/robstoll/atrium/tree/v1.0.0/.github/CODE_OF_CONDUCT.md).
By participating, you are expected to uphold this code. Please report unacceptable behaviour to info@tutteli.ch

## How to Contribute
Expand Down
226 changes: 113 additions & 113 deletions README.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apis/differences.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ These modules bundle:
Following a list of the available bundle-modules.
The links point to the KDoc of their included API where you find an overview of all available expectation functions of the API.

- [atrium-fluent](https://docs.atriumlib.org/1.0.0-RC2/doc/ch.tutteli.atrium.api.fluent.en_-g-b/index.html)
- [atrium-infix](https://docs.atriumlib.org/1.0.0-RC2/doc/ch.tutteli.atrium.api.infix.en_-g-b/index.html)
- [atrium-fluent](https://docs.atriumlib.org/1.0.0/doc/ch.tutteli.atrium.api.fluent.en_-g-b/index.html)
- [atrium-infix](https://docs.atriumlib.org/1.0.0/doc/ch.tutteli.atrium.api.infix.en_-g-b/index.html)

----

Following an excerpt of a build.gradle file which uses both APIs (see
[README#Installation](https://github.com/robstoll/atrium/tree/v1.0.0-RC2/README.md#installation)
[README#Installation](https://github.com/robstoll/atrium/tree/v1.0.0/README.md#installation)
for the rest):
```kotlin
dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ interface AssertionContainer<T> {
val maybeSubject: Option<T>

/**
* Do not use yet, this is experimental and will definitely change in 0.17.0 or 0.18.0.
*
* Might be we completely remove it without prior notice.
* Do not use yet, this is experimental and might change or be removed without prior notice.
*/
//TODO 1.1.0/1.2.0 maybe it would be better to have proofFactories as val like we have components?
//TODO 1.1.0 I guess it would make sense to get rid of getImpl and only use the ComponentFactoryContainer approach
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import java.io.IOException
import java.net.URL

buildscript {
rootProject.version = "1.0.0-RC2"
rootProject.version = "1.0.0"
rootProject.group = "ch.tutteli.atrium"
dependencies {
classpath("org.jetbrains.dokka:dokka-base:1.8.10")
Expand Down Expand Up @@ -590,7 +590,7 @@ Release & deploy a commit
Either use the following commands or the manual steps below
export ATRIUM_PREVIOUS_VERSION=0.18.0
export ATRIUM_PREVIOUS_VERSION=1.0.0
export ATRIUM_VERSION=1.0.0
find ./ -name "*.md" | xargs perl -0777 -i \
-pe "s@$ATRIUM_PREVIOUS_VERSION@$ATRIUM_VERSION@g;" \
Expand Down Expand Up @@ -696,7 +696,7 @@ Prepare next dev cycle
Either use the following commands or the manual steps below
export ATRIUM_VERSION=1.0.0-RC2
export ATRIUM_VERSION=1.0.0
export ATRIUM_NEXT_VERSION=1.0.0
find ./ -name "*.md" | xargs perl -0777 -i \
-pe "s@tree/v$ATRIUM_VERSION@tree/main@g;" \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import ch.tutteli.atrium.specs.*
import ch.tutteli.atrium.translations.DescriptionCollectionExpectation
import ch.tutteli.atrium.translations.DescriptionIterableLikeExpectation

//TODO 0.18.0 include InOrderReportOptions
//TODO 1.1.0 include InOrderReportOptions
abstract class IterableToContainInOrderOnlyGroupedValuesExpectationsSpec(
toContainInOrderOnlyGroupedValues: Fun5<
Iterable<Double>, Group<Double>,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ch.tutteli.atrium.creating.Expect
import ch.tutteli.atrium.specs.*
import org.spekframework.spek2.style.specification.Suite

//TODO 0.18.0 include InOrderReportOptions
//TODO 1.1.0 include InOrderReportOptions
abstract class MapToContainInOrderOnlyKeyValuePairsExpectationsSpec(
keyValuePairs: MFun2<String, Int, Int>,
keyValuePairsNullable: MFun2<String?, Int?, Int?>,
Expand Down

0 comments on commit cda7a53

Please sign in to comment.