Skip to content

Commit

Permalink
Merge pull request #28 from tideland/migrate-to-1-18
Browse files Browse the repository at this point in the history
Migrate to 1 18
  • Loading branch information
themue authored Apr 14, 2022
2 parents 80dc5a5 + bb5e3af commit 21f4235
Show file tree
Hide file tree
Showing 13 changed files with 129 additions and 142 deletions.
22 changes: 0 additions & 22 deletions .github/workflows/build.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/go.yaml → .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
Expand Down
86 changes: 45 additions & 41 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,75 +1,79 @@
# Changelog

## v0.6.5
### v0.7.0

* (C) Fix checking for nil error in Asserts.ErrorContains()
* (C) Fix generator to resist concurrent calls
- Migrate to Go 1.18

## v0.6.4
### v0.6.5

* (C) Web simulator now provides some convenience methods
- Fix checking for nil error in Asserts.ErrorContains()
- Fix generator to resist concurrent calls

## v0.6.3
### v0.6.4

* (C) Web package now uses httptest package
- Web simulator now provides some convenience methods

## v0.6.2
### v0.6.3

* (C) Migrate web response to http.Response
* (A) Add helper for request body
- Web package now uses httptest package

## v0.6.1
### v0.6.2

* (C) Change web response to use the standard http.Response
* (A) Add helper for response body
- Migrate web response to http.Response
- Add helper for request body

## v0.6.0
### v0.6.1

* (A) New web package for handler tests
- Change web response to use the standard http.Response
- Add helper for response body

## v0.5.2
### v0.6.0

* (C) Optimize output of last change
- New web package for handler tests

## v0.5.1
### v0.5.2

* (C) Fix output in case of failing web body assertions
- Optimize output of last change

## v0.5.0
### v0.5.1

* (A) Asserts now contains NotOK() and AnyError()
* (C) Asserts created with NewTesting() now uses the Failable as Printer if
- Fix output in case of failing web body assertions

### v0.5.0

- Asserts now contains NotOK() and AnyError()
- Asserts created with NewTesting() now uses the Failable as Printer if
it implements the according interface
* (A) Generator now contains OneOf()
- Generator now contains OneOf()

## v0.4.0
### v0.4.0

* (A) Asserts now contains NotPanics() and PanicsWith()
* (C) Asserts.OK() now also handles func() error
* (C) Migrate Tester into private helper functions
* (D) Drop unused output in Asserts unit test
- Asserts now contains NotPanics() and PanicsWith()
- Asserts.OK() now also handles func() error
- Migrate Tester into private helper functions
- Drop unused output in Asserts unit test

## v0.3.4
### v0.3.4

* (C) Length tester now counts runes instead of bytes in case of strings
- Length tester now counts runes instead of bytes in case of strings

## v0.3.3
### v0.3.3

* (C) Extend Asserts.OK() for more types
* (C) Extend Asserts.NoError() to not only check for nil but also in case
- Extend Asserts.OK() for more types
- Extend Asserts.NoError() to not only check for nil but also in case
of a T.Err() instance to return no error
* (C) Same for Asserts.ErrorMatch() and Asserts.ErrorContains()
- Same for Asserts.ErrorMatch() and Asserts.ErrorContains()

## v0.3.2
### v0.3.2

* (C) Add Asserts.OK() as a simple alias for Asserts.True()
* (C) Fix the public embedding of the Tester to Asserts
- Add Asserts.OK() as a simple alias for Asserts.True()
- Fix the public embedding of the Tester to Asserts

## v0.3.1
### v0.3.1

* (C) Fix output of Asserts.ErrorMatch()
- Fix output of Asserts.ErrorMatch()

## v0.3.0
### v0.3.0

* (C) Extracted from Tideland Go Library as part of split
- Extracted from Tideland Go Library as part of split

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ci: lint test ## Run all the tests and code checks


.PHONY: clean
clean: ## Clean
clean: ## Clean
$(GOCLEAN)


Expand Down
Loading

0 comments on commit 21f4235

Please sign in to comment.