Skip to content

Commit 22d7a20

Browse files
committed
Test release
1 parent b7922e2 commit 22d7a20

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[![npm version](https://badge.fury.io/js/%40cowwoc%2Frequirements.svg)](https://badge.fury.io/js/%40cowwoc%2Frequirements)
22
[![build-status](https://github.com/cowwoc/requirements.js/workflows/Build/badge.svg)](https://github.com/cowwoc/requirements.js/actions?query=workflow%3ABuild)
33

4-
# <img src="https://raw.githubusercontent.com/cowwoc/requirements.js/release-4.0.4/docs/checklist.svg?sanitize=true" width=64 height=64 alt="checklist"> Requirements API
4+
# <img src="https://raw.githubusercontent.com/cowwoc/requirements.js/release-4.0.5/docs/checklist.svg?sanitize=true" width=64 height=64 alt="checklist"> Requirements API
55

6-
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/)
6+
[![API](https://img.shields.io/badge/api_docs-5B45D5.svg)](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/)
77
[![Changelog](https://img.shields.io/badge/changelog-A345D5.svg)](docs/Changelog.md)
88
[![java](https://img.shields.io/badge/other%20languages-java-457FD5.svg)](../../../requirements.java)
99

@@ -18,13 +18,13 @@ A [fluent API](https://en.m.wikipedia.org/docs/Fluent_interface) for enforcing
1818
To get started, add this dependency:
1919

2020
```shell
21-
npm install --save @cowwoc/[email protected].4
21+
npm install --save @cowwoc/[email protected].5
2222
```
2323

2424
or [pnpm](https://pnpm.io/):
2525

2626
```shell
27-
pnpm add @cowwoc/[email protected].4
27+
pnpm add @cowwoc/[email protected].5
2828
```
2929

3030
## Usage Example
@@ -146,11 +146,11 @@ This library offers the following features:
146146
Designed for discovery using your favorite IDE's auto-complete feature.
147147
The main entry points are:
148148

149-
* [requireThat(value, name)](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/module-DefaultRequirements.html#~requireThat)
149+
* [requireThat(value, name)](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/module-DefaultRequirements.html#~requireThat)
150150
for method preconditions.
151-
* [assertThat(value, name)](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/module-DefaultRequirements.html#~assertThat)
151+
* [assertThat(value, name)](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/module-DefaultRequirements.html#~assertThat)
152152
for [class invariants, method postconditions and private methods](docs/Features.md#assertion-support).
153-
* [checkIf(value, name)](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/module-DefaultRequirements.html#~checkIf)
153+
* [checkIf(value, name)](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/module-DefaultRequirements.html#~checkIf)
154154
for multiple failures and customized error handling.
155155

156156
See the [API documentation](https://cowwoc.github.io/requirements.java/10.0/docs/api/) for more details.

docs/Changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Minor updates involving cosmetic changes have been omitted from this list. See
22
https://github.com/cowwoc/requirements.java/commits/master for a full list.
33

4-
## Version 4.0.4 - 2024/10/31
4+
## Version 4.0.5 - 2024/10/31
55

66
* Breaking changes:
77
* Replaced `validateThat()` with `checkIf()`.

docs/Features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ requireThat(nameToAge, "nameToAge").
9999
## String diff
100100

101101
When
102-
a [String comparison](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/ObjectVerifier.html#isEqualTo)
102+
a [String comparison](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/ObjectVerifier.html#isEqualTo)
103103
fails, the library outputs a diff of the values being compared.
104104

105105
Depending on the terminal capability, you will see a [textual](Textual_Diff.md) or a colored diff.

docs/String_Diff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
When
2-
a [String comparison](https://cowwoc.github.io/requirements.js/4.0.4/docs/api/ObjectVerifier.html#isEqualTo)
2+
a [String comparison](https://cowwoc.github.io/requirements.js/4.0.5/docs/api/ObjectVerifier.html#isEqualTo)
33
fails, the library outputs a [diff](https://en.wikipedia.org/wiki/Diff) of the values being compared.
44

55
Depending on the terminal capability, you will see a [Textual](Textual_Diff.md) or [Colored](Colored_Diff.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cowwoc/requirements",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"keywords": [
55
"preconditions",
66
"postconditions",

0 commit comments

Comments
 (0)