Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.3.0 #86

Merged
merged 1 commit into from
Sep 16, 2023
Merged
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
32 changes: 30 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,36 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## Unreleased
- No changes yet.
## 0.3.0 (15 Sep 2023)
### Added
- [#13][]: Support for embedded generic interfaces.
- [#33][]: `-write_source_comment` for writing the original file or interface names
in the generated code.
- [#46][]: `-write-generate-directive` for generating go:generate directives into
the generated mock.
- [#60][]: `Cond` matcher for specifying a conditional matcher as the result of a
given function.
- [#72][]: `exclude_interfaces` flag for specifying list of interfaces to exclude
from mock generation.

### Fixed
- [#41][]: A bug with specifying local import name with `-imports` flag.
- [#52][]: A panic that occurs in `gob.Register` when used in conjunction with
golang/mock.
- [#78][]: `InOrder` can be used with type-safe mocks generated with `-typed` flag.

[#13]: https://github.com/uber-go/mock/pull/13
[#33]: https://github.com/uber-go/mock/pull/33
[#41]: https://github.com/uber-go/mock/pull/41
[#46]: https://github.com/uber-go/mock/pull/46
[#52]: https://github.com/uber-go/mock/pull/52
[#60]: https://github.com/uber-go/mock/pull/60
[#72]: https://github.com/uber-go/mock/pull/72
[#78]: https://github.com/uber-go/mock/pull/78

Thanks to @alexandear, @bcho, @deathiop, @sivchari, @k3forx, @n0trace,
@utgwkk, @ErfanMomeniii, @bcho, @damianopetrungaro, @Tulzke,
and @EstebanOlmedo for their contributions to this release.

## 0.2.0 (06 Jul 2023)
### Added
Expand Down