Skip to content

Commit a5b28da

Browse files
authored
Revert release and fix regex (#2439)
* Revert "Bump versions and add changelog entries. (#2436)" This reverts commit 49775cf. * fix version matching
1 parent 49775cf commit a5b28da

File tree

3 files changed

+2
-22
lines changed

3 files changed

+2
-22
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# Get tag name from event
3535
tag_name="${{ github.event.release.tag_name }}"
3636
37-
if [[ ! "$tag_name" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
37+
if [[ ! "$tag_name" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
3838
cd $(echo $tag_name | rev | cut -d'/' -f2- | rev)
3939
fi
4040

CHANGELOG.md

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,5 @@
11
# CHANGELOG
22

3-
## 2.34.0/2025-05-28
4-
5-
### Fixed
6-
* add `include` parameter to On-Call team rules test [#2426](https://github.com/DataDog/datadog-api-client-ruby/pull/2426)
7-
* fix On-Call spec [#2417](https://github.com/DataDog/datadog-api-client-ruby/pull/2417)
8-
* Fix frozen string errors again, more durably this time [#2407](https://github.com/DataDog/datadog-api-client-ruby/pull/2407)
9-
* Fix incorrect pattern for url [#2399](https://github.com/DataDog/datadog-api-client-ruby/pull/2399)
10-
* Make metadata optional for GCS destination [#2389](https://github.com/DataDog/datadog-api-client-ruby/pull/2389)
11-
* Remove isReadOnly default when creating dashboards [#2388](https://github.com/DataDog/datadog-api-client-ruby/pull/2388)
12-
* Make assertion target be int or string [#2385](https://github.com/DataDog/datadog-api-client-ruby/pull/2385)
13-
14-
### Added
15-
* Add support for Datadog Events as a data source for rules [#2421](https://github.com/DataDog/datadog-api-client-ruby/pull/2421)
16-
* Add public APIs to search DORA events [#2418](https://github.com/DataDog/datadog-api-client-ruby/pull/2418)
17-
* Adding endpoints to manage Resource Evaluation Filters [#2411](https://github.com/DataDog/datadog-api-client-ruby/pull/2411)
18-
* Add Sev0 as a supported incident severity [#2403](https://github.com/DataDog/datadog-api-client-ruby/pull/2403)
19-
* Share timerestriction object [#2397](https://github.com/DataDog/datadog-api-client-ruby/pull/2397)
20-
* add On-Call Paging spec [#2391](https://github.com/DataDog/datadog-api-client-ruby/pull/2391)
21-
* Add pagination method for NDM ListDevices. [#2386](https://github.com/DataDog/datadog-api-client-ruby/pull/2386)
22-
233
## 2.33.0 / 2025-05-01
244

255
### Fixed

lib/datadog_api_client/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Define library version.
22

33
module DatadogAPIClient
4-
VERSION = '2.34.0'
4+
VERSION = '2.33.0-dev.1'
55
end

0 commit comments

Comments
 (0)