Prepare release v0.5.1 (#241) · uber-go/mock@cf6f33d (original) (raw)

Original file line number Diff line number Diff line change
@@ -3,8 +3,21 @@ All notable changes to this project will be documented in this file.
3 3
4 4 This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5 5
6 -## Unreleased
7 -- No changes yet.
6 +## 0.5.1 (7 Apr 2025)
7 +### Fixed
8 +
9 +- [#220][]: Package mode will now generate code that uses aliases of types
10 + when they are used in the source.
11 +- [#219][]: Fixed a collision between function argument names and package names
12 + in generated code.
13 +- [#165][]: Fixed an issue where aliases specified by `-imports` were not being
14 + respected in generated code.
15 +
16 +[#220]: https://github.com/uber-go/mock/pull/220
17 +[#219]: https://github.com/uber-go/mock/pull/219
18 +[#165]: https://github.com/uber-go/mock/pull/165
19 +
20 +Thanks to @mtoader and @bstncartwright for their contributions to this release.
8 21
9 22 ## 0.5.0 (15 Oct 2024)
10 23 ### Added