Skip to content

Commit

Permalink
Bump version to v0.7.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalloc committed Jul 16, 2024
1 parent 7c26907 commit 3a56eb0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ The format is based on [Keep a Changelog], and this project adheres to
[keep a changelog]: https://keepachangelog.com/en/1.0.0/
[semantic versioning]: https://semver.org/spec/v2.0.0.html

## [0.7.3] - 2024-07-16

### Added

- Added support for `Disable()` method in `dogmatiq/dogma` v0.13.1.

## [0.7.2] - 2024-07-11

### Added
Expand Down Expand Up @@ -187,6 +193,7 @@ placeholder format (`?` for MySQL, `$1` for everything else).
[0.7.0]: https://github.com/dogmatiq/projectionkit/releases/tag/v0.7.0
[0.7.1]: https://github.com/dogmatiq/projectionkit/releases/tag/v0.7.1
[0.7.2]: https://github.com/dogmatiq/projectionkit/releases/tag/v0.7.2
[0.7.3]: https://github.com/dogmatiq/projectionkit/releases/tag/v0.7.3

<!-- version template
## [0.0.1] - YYYY-MM-DD
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/aws/aws-sdk-go-v2/credentials v1.17.26
github.com/aws/aws-sdk-go-v2/service/dynamodb v1.34.3
github.com/dogmatiq/cosyne v0.2.0
github.com/dogmatiq/dogma v0.13.0
github.com/dogmatiq/dogma v0.13.1
github.com/dogmatiq/sqltest v0.3.0
github.com/onsi/ginkgo v1.16.5
github.com/onsi/gomega v1.33.1
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/dogmatiq/cosyne v0.2.0 h1:tO957BpS4I9kqSw31ds6Ef4CXvV8zPAqWzbXKElsGWg=
github.com/dogmatiq/cosyne v0.2.0/go.mod h1:dD8EZjbRX7FFw9t6P7l1nwoZbA7YxtOCfl9ZZAHPucU=
github.com/dogmatiq/dogma v0.13.0 h1:MKk9MHErGKD53Y+43I4fcoPZMQjX0N2DUZEc4rLp+Hk=
github.com/dogmatiq/dogma v0.13.0/go.mod h1:9lyVA+6V2+E/exV0IrBOrkUiyFwIATEhv+b0vnB2umQ=
github.com/dogmatiq/dogma v0.13.1 h1:b1nsqYNmICEG2egvZ43K8w04Jma+MWYL6yF5Ad12y9o=
github.com/dogmatiq/dogma v0.13.1/go.mod h1:9lyVA+6V2+E/exV0IrBOrkUiyFwIATEhv+b0vnB2umQ=
github.com/dogmatiq/sqltest v0.3.0 h1:DCwyLWfVk/ZHsqq5Itq3H/Lqsh/CIQ6nIRwI4YLywFc=
github.com/dogmatiq/sqltest v0.3.0/go.mod h1:a8Da8NhU4m3lq5Sybhiv+ZQowSnGHWTIJHFNInVtffg=
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
Expand Down
1 change: 1 addition & 0 deletions internal/identity/key.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ type configurer struct {
func (c *configurer) Identity(_ string, key string) { c.key = key }
func (c *configurer) Routes(...dogma.ProjectionRoute) {}
func (c *configurer) DeliveryPolicy(dogma.ProjectionDeliveryPolicy) {}
func (c *configurer) Disable(...dogma.DisableOption) {}

0 comments on commit 3a56eb0

Please sign in to comment.