Skip to content

Commit b9bb7c4

Browse files
committed
0.13.0: Limit metrics to specific adapters, optional tags for counters
1 parent 7df0d8e commit b9bb7c4

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## Unreleased
99

10+
## 0.13.0 - 2024-10-02
11+
1012
### Added
1113

1214
- Ability to limit some metrics to specific adapters. [#37](https://github.com/yabeda-rb/yabeda/pull/37) by [@Keallar] and [@Envek]
@@ -23,7 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2325
end
2426
```
2527

26-
- Multiple expectations in RSpec matchers:
28+
- Multiple expectations in RSpec matchers. [@Envek]
2729

2830
```ruby
2931
expect { whatever }.to increment_yabeda_counter(:my_counter).with(
@@ -44,7 +46,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4446

4547
### Fixed
4648

47-
- Railtie loading to prevent calling methods that have not yet been defined
49+
- Railtie loading to prevent calling methods that have not yet been defined. [#38](https://github.com/yabeda-rb/yabeda/pull/38) by [@bibendi].
4850

4951
## 0.12.0 - 2023-07-28
5052

@@ -179,4 +181,5 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
179181
[@dsalahutdinov]: https://github.com/dsalahutdinov "Dmitry Salahutdinov"
180182
[@asusikov]: https://github.com/asusikov "Alexander Susikov"
181183
[@liaden]: https://github.com/liaden "Joel Johnson"
184+
[@bibendi]: https://github.com/bibendi "Misha Merkushin"
182185
[@Keallar]: https://github.com/Keallar "Eugene Lysanskiy"

lib/yabeda/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Yabeda
4-
VERSION = "0.12.0"
4+
VERSION = "0.13.0"
55
end

0 commit comments

Comments
 (0)