Skip to content

Commit

Permalink
release 2.83.0 (#1966)
Browse files Browse the repository at this point in the history
* release 2.83.0

* Don't test against rails main

* Test against Ruby 3.2

* Don't test PVC in CI
  • Loading branch information
camertron committed Jan 8, 2024
1 parent c43d8ba commit ab407af
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 40 deletions.
40 changes: 3 additions & 37 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ jobs:
ruby_version: "2.7"
- rails_version: "7.0.2.3"
ruby_version: "3.0"
- rails_version: "main"
- rails_version: "7.0.2.3"
ruby_version: "3.1"
- rails_version: "7.0.2.3"
ruby_version: "3.2"
steps:
- uses: actions/checkout@master
- name: Setup Ruby
Expand All @@ -63,42 +65,6 @@ jobs:
with:
name: simplecov-resultset-rails${{matrix.rails_version}}-ruby${{matrix.ruby_version}}
path: coverage
pvc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
with:
repository: 'primer/view_components'
path: 'primer_view_components'
- uses: actions/checkout@master
with:
path: 'view_component'
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- uses: actions/setup-node@v2
with:
node-version: 16
- uses: actions/cache@v2
with:
path: |
node_modules
vendor/bundle
key: gems-build-pvc-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/package-json.lock') }}
- name: Build and test with Rake
run: |
cd primer_view_components
npm ci
cd demo && npm ci && cd ..
bundle config path vendor/bundle
bundle install
bundle exec rake docs:preview
bundle exec rake
env:
VIEW_COMPONENT_PATH: ../view_component
RAILS_VERSION: '~> 6.1.0'
PARALLEL_WORKERS: '1'
coverage:
needs: test
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
view_component (2.82.0)
view_component (2.83.0)
activesupport (>= 5.2.0, < 8.0)
concurrent-ruby (~> 1.0)
method_source (~> 1.0)
Expand Down
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ nav_order: 5

## main

## 2.83.0

* Ensure HTML output safety.

*Cameron Dutro*
Expand Down
2 changes: 1 addition & 1 deletion docs/_data/library.yml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 2.82.0
version: 2.83.0
2 changes: 1 addition & 1 deletion lib/view_component/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module ViewComponent
module VERSION
MAJOR = 2
MINOR = 82
MINOR = 83
PATCH = 0

STRING = [MAJOR, MINOR, PATCH].join(".")
Expand Down

0 comments on commit ab407af

Please sign in to comment.