Skip to content

Commit ab407af

Browse files
authored
release 2.83.0 (#1966)
* release 2.83.0 * Don't test against rails main * Test against Ruby 3.2 * Don't test PVC in CI
1 parent c43d8ba commit ab407af

File tree

5 files changed

+8
-40
lines changed

5 files changed

+8
-40
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ jobs:
3636
ruby_version: "2.7"
3737
- rails_version: "7.0.2.3"
3838
ruby_version: "3.0"
39-
- rails_version: "main"
39+
- rails_version: "7.0.2.3"
4040
ruby_version: "3.1"
41+
- rails_version: "7.0.2.3"
42+
ruby_version: "3.2"
4143
steps:
4244
- uses: actions/checkout@master
4345
- name: Setup Ruby
@@ -63,42 +65,6 @@ jobs:
6365
with:
6466
name: simplecov-resultset-rails${{matrix.rails_version}}-ruby${{matrix.ruby_version}}
6567
path: coverage
66-
pvc:
67-
runs-on: ubuntu-latest
68-
steps:
69-
- uses: actions/checkout@master
70-
with:
71-
repository: 'primer/view_components'
72-
path: 'primer_view_components'
73-
- uses: actions/checkout@master
74-
with:
75-
path: 'view_component'
76-
- name: Setup Ruby
77-
uses: ruby/setup-ruby@v1
78-
with:
79-
ruby-version: 2.7
80-
- uses: actions/setup-node@v2
81-
with:
82-
node-version: 16
83-
- uses: actions/cache@v2
84-
with:
85-
path: |
86-
node_modules
87-
vendor/bundle
88-
key: gems-build-pvc-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/package-json.lock') }}
89-
- name: Build and test with Rake
90-
run: |
91-
cd primer_view_components
92-
npm ci
93-
cd demo && npm ci && cd ..
94-
bundle config path vendor/bundle
95-
bundle install
96-
bundle exec rake docs:preview
97-
bundle exec rake
98-
env:
99-
VIEW_COMPONENT_PATH: ../view_component
100-
RAILS_VERSION: '~> 6.1.0'
101-
PARALLEL_WORKERS: '1'
10268
coverage:
10369
needs: test
10470
runs-on: ubuntu-latest

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
view_component (2.82.0)
4+
view_component (2.83.0)
55
activesupport (>= 5.2.0, < 8.0)
66
concurrent-ruby (~> 1.0)
77
method_source (~> 1.0)

docs/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ nav_order: 5
1010

1111
## main
1212

13+
## 2.83.0
14+
1315
* Ensure HTML output safety.
1416

1517
*Cameron Dutro*

docs/_data/library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 2.82.0
1+
version: 2.83.0

lib/view_component/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
module ViewComponent
44
module VERSION
55
MAJOR = 2
6-
MINOR = 82
6+
MINOR = 83
77
PATCH = 0
88

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

0 commit comments

Comments
 (0)