Skip to content

Commit cda7a53

Browse files
committed
v1.0.0
1 parent 40eaa11 commit cda7a53

File tree

7 files changed

+123
-125
lines changed

7 files changed

+123
-125
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Following a few guidelines so that others can quickly benefit from your contribu
1212

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

1818
## How to Contribute

README.md

Lines changed: 113 additions & 113 deletions
Large diffs are not rendered by default.

apis/differences.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ These modules bundle:
1313
Following a list of the available bundle-modules.
1414
The links point to the KDoc of their included API where you find an overview of all available expectation functions of the API.
1515

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

1919
----
2020

2121
Following an excerpt of a build.gradle file which uses both APIs (see
22-
[README#Installation](https://github.com/robstoll/atrium/tree/v1.0.0-RC2/README.md#installation)
22+
[README#Installation](https://github.com/robstoll/atrium/tree/v1.0.0/README.md#installation)
2323
for the rest):
2424
```kotlin
2525
dependencies {

atrium-core/src/commonMain/kotlin/ch/tutteli/atrium/creating/AssertionContainer.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ interface AssertionContainer<T> {
2828
val maybeSubject: Option<T>
2929

3030
/**
31-
* Do not use yet, this is experimental and will definitely change in 0.17.0 or 0.18.0.
32-
*
33-
* Might be we completely remove it without prior notice.
31+
* Do not use yet, this is experimental and might change or be removed without prior notice.
3432
*/
3533
//TODO 1.1.0/1.2.0 maybe it would be better to have proofFactories as val like we have components?
3634
//TODO 1.1.0 I guess it would make sense to get rid of getImpl and only use the ComponentFactoryContainer approach

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import java.io.IOException
1010
import java.net.URL
1111

1212
buildscript {
13-
rootProject.version = "1.0.0-RC2"
13+
rootProject.version = "1.0.0"
1414
rootProject.group = "ch.tutteli.atrium"
1515
dependencies {
1616
classpath("org.jetbrains.dokka:dokka-base:1.8.10")
@@ -590,7 +590,7 @@ Release & deploy a commit
590590
591591
Either use the following commands or the manual steps below
592592
593-
export ATRIUM_PREVIOUS_VERSION=0.18.0
593+
export ATRIUM_PREVIOUS_VERSION=1.0.0
594594
export ATRIUM_VERSION=1.0.0
595595
find ./ -name "*.md" | xargs perl -0777 -i \
596596
-pe "s@$ATRIUM_PREVIOUS_VERSION@$ATRIUM_VERSION@g;" \
@@ -696,7 +696,7 @@ Prepare next dev cycle
696696
697697
Either use the following commands or the manual steps below
698698
699-
export ATRIUM_VERSION=1.0.0-RC2
699+
export ATRIUM_VERSION=1.0.0
700700
export ATRIUM_NEXT_VERSION=1.0.0
701701
find ./ -name "*.md" | xargs perl -0777 -i \
702702
-pe "s@tree/v$ATRIUM_VERSION@tree/main@g;" \

misc/atrium-specs/src/commonMain/kotlin/ch/tutteli/atrium/specs/integration/IterableToContainInOrderOnlyGroupedValuesExpectationsSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import ch.tutteli.atrium.specs.*
1111
import ch.tutteli.atrium.translations.DescriptionCollectionExpectation
1212
import ch.tutteli.atrium.translations.DescriptionIterableLikeExpectation
1313

14-
//TODO 0.18.0 include InOrderReportOptions
14+
//TODO 1.1.0 include InOrderReportOptions
1515
abstract class IterableToContainInOrderOnlyGroupedValuesExpectationsSpec(
1616
toContainInOrderOnlyGroupedValues: Fun5<
1717
Iterable<Double>, Group<Double>,

misc/atrium-specs/src/commonMain/kotlin/ch/tutteli/atrium/specs/integration/MapToContainInOrderOnlyKeyValuePairsExpectationsSpec.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import ch.tutteli.atrium.creating.Expect
66
import ch.tutteli.atrium.specs.*
77
import org.spekframework.spek2.style.specification.Suite
88

9-
//TODO 0.18.0 include InOrderReportOptions
9+
//TODO 1.1.0 include InOrderReportOptions
1010
abstract class MapToContainInOrderOnlyKeyValuePairsExpectationsSpec(
1111
keyValuePairs: MFun2<String, Int, Int>,
1212
keyValuePairsNullable: MFun2<String?, Int?, Int?>,

0 commit comments

Comments
 (0)