From 4e3b8d2eacea7ec532a9f2f34be54b92550e1be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TATSUNO=20=E2=80=9CTaz=E2=80=9D=20Yasuhiro?= Date: Wed, 17 Apr 2024 15:59:16 +0900 Subject: [PATCH] Releasing V0.18.0 (#218) * Added release note generator * New version --- .github/release.yaml | 24 ++++++++++++++++++++++++ lib/rspec/openapi/version.rb | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .github/release.yaml diff --git a/.github/release.yaml b/.github/release.yaml new file mode 100644 index 0000000..5ae94e8 --- /dev/null +++ b/.github/release.yaml @@ -0,0 +1,24 @@ +changelog: + exclude: + labels: + - ignore-for-release + authors: + - octocat + categories: + - title: 🛠 Breaking Changes + labels: + - semver-major + - breaking-change + - title: 🎉 Exciting New Features + labels: + - semver-minor + - enhancement + - title: 🐞 Bugfixes + labels: + - bug + - title: 📄 Documentation + labels: + - documentation + - title: 📦 Other Changes + labels: + - "*" diff --git a/lib/rspec/openapi/version.rb b/lib/rspec/openapi/version.rb index e45e2b0..74beed9 100644 --- a/lib/rspec/openapi/version.rb +++ b/lib/rspec/openapi/version.rb @@ -2,6 +2,6 @@ module RSpec module OpenAPI - VERSION = '0.17.0' + VERSION = '0.18.0' end end