Skip to content

Commit

Permalink
chore: RC v4.10.1 (#409)
Browse files Browse the repository at this point in the history
##
[4.10.1](v4.10.0...v4.10.1)
(2024-10-07)
  • Loading branch information
michael-siek authored Oct 8, 2024
2 parents 5d7eac5 + ad969a3 commit 7a3723a
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ commands:
description: Install dependencies and bootstrap packages
steps:
- checkout
- browser-tools/install-browser-tools
- browser-tools/install-browser-tools:
chrome-version: 126.0.6478.182
replace-existing-chrome: true
- node/install:
node-version: "16.13"
- run: gem install bundler # setup bundler
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/sync-master-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,3 @@ jobs:
pr-title: "chore: merge master into develop"
pr-team-reviewers: axe-api-team
pr-labels: chore
pr-template: .github/PULL_REQUEST_TEMPLATE.md
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## [4.10.1](https://github.com/dequelabs/axe-core-gems/compare/v4.10.0...v4.10.1) (2024-10-07)

## [4.10.0](https://github.com/dequelabs/axe-core-gems/compare/v4.9.1...v4.10.0) (2024-08-13)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "axe-core-gems",
"version": "4.10.0",
"version": "4.10.1",
"license": "MPL-2.0",
"private": true,
"repository": {
Expand Down
3 changes: 3 additions & 0 deletions packages/axe-core-api/axe-core-api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ Gem::Specification.new do |spec|
]

spec.add_dependency "dumb_delegator"
# used by virtus; including it to make sure we install the gem and do not
# rely on the standard library version, which will be removed in 3.5.0
spec.add_dependency "ostruct"
spec.add_dependency "virtus"

spec.add_development_dependency "bundler", "~> 2.1"
Expand Down
3 changes: 3 additions & 0 deletions packages/axe-core-cucumber/axe-core-cucumber.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Gem::Specification.new do |spec|
]

spec.add_dependency "dumb_delegator"
# used by virtus; including it to make sure we install the gem and do not
# rely on the standard library version, which will be removed in 3.5.0
spec.add_dependency "ostruct"
spec.add_dependency "virtus"
# pin to a specific version of axe-core-api
spec.add_dependency "axe-core-api", AxeCoreGems::VERSION
Expand Down
3 changes: 3 additions & 0 deletions packages/axe-core-rspec/axe-core-rspec.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ Gem::Specification.new do |spec|
]

spec.add_dependency "dumb_delegator"
# used by virtus; including it to make sure we install the gem and do not
# rely on the standard library version, which will be removed in 3.5.0
spec.add_dependency "ostruct"
spec.add_dependency "virtus"
# pin to a specific version of axe-core-api
spec.add_dependency "axe-core-api", AxeCoreGems::VERSION
Expand Down
2 changes: 1 addition & 1 deletion version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# this version is used by all the packages

module AxeCoreGems
VERSION = "4.10.0"
VERSION = "4.10.1"
end

0 comments on commit 7a3723a

Please sign in to comment.