Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Deprecate the library #152

Merged
merged 10 commits into from
Feb 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@ All notable changes to this library are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this library adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/fluentassert/verify/compare/v1.2.0...HEAD)
## [1.3.0](https://github.com/fluentassert/verify/releases/tag/v1.2.0) - 2025-02-17

### Deprecated

- Deprecate the whole library. Avoid using assertion libraries.
Use the standard library and [github.com/google/go-cmp/cmp](https://pkg.go.dev/github.com/google/go-cmp/cmp)
instead. Follow the official [Go Test Comments](https://go.dev/wiki/TestComments).

## [1.2.0](https://github.com/fluentassert/verify/releases/tag/v1.2.0) - 2024-09-10

Expand Down
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# fluentassert

> Extensible, type-safe, fluent assertion Go library.
> [!CAUTION]
> [Avoid using assertion libraries](https://go.dev/wiki/TestComments#assert-libraries).
> Instead, use [`go-cmp`](https://github.com/google/go-cmp)
> and write custom test helpers.
> Using the popular [`testify`](https://github.com/stretchr/testify)
> may be also an acceptable choice,
> especially together with [`testifylint`](https://github.com/Antonboom/testifylint)
> to avoid common mistakes.
> Use this library if you still want to.
> Consider yourself warned.

[![Go Reference](https://pkg.go.dev/badge/github.com/fluentassert/verify.svg)](https://pkg.go.dev/github.com/fluentassert/verify)
[![Keep a Changelog](https://img.shields.io/badge/changelog-Keep%20a%20Changelog-%23E05735)](CHANGELOG.md)
Expand All @@ -22,17 +31,6 @@ The generics (type parameters) make the usage type-safe.

The library is [extensible](#extensibility) by design.

> [!CAUTION]
> [Avoid using assertion libraries](https://go.dev/wiki/TestComments#assert-libraries).
> Instead, use [`go-cmp`](https://github.com/google/go-cmp)
> and write custom test helpers.
> Using the popular [`testify`](https://github.com/stretchr/testify)
> may be also an acceptable choice,
> especially together with [`testifylint`](https://github.com/Antonboom/testifylint)
> to avoid common mistakes.
> Use this library if you still want to.
> Consider yourself warned.

### Quick start

```go
Expand Down
6 changes: 6 additions & 0 deletions doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,10 @@
//
// At last, you may embed a Fluent* type
// to extend it with additional assertion functions.
//
// Deprecated: avoid using assertion libraries.
// Use the standard library and [github.com/google/go-cmp/cmp] instead.
// Follow the official [Go Test Comments].
//
// [Go Test Comments]: https://go.dev/wiki/TestComments
package verify
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// Deprecated: avoid using assertion libraries.
// Use the standard library and github.com/google/go-cmp/cmp instead.
// Follow the official Go Test Comments: https://go.dev/wiki/TestComments.
module github.com/fluentassert/verify

go 1.18
Expand Down