Commit 1b7c329 1 parent 8032818 commit 1b7c329 Copy full SHA for 1b7c329
File tree 4 files changed +30
-2
lines changed
4 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## [ 0.2.1] ( https://github.com/theodorton/veksel/compare/v0.2.0...v0.2.1 ) (2024-03-10)
2
+
3
+ ### Bug Fixes
4
+
5
+ - Require fileutils as it's not loaded by default in some Ruby versions. ([ 66833d0] ( https://github.com/theodorton/veksel/commit/66833d01ee19345de26435bf267ca41f650d3931 ) )
6
+
1
7
## [ 0.2.0] ( https://github.com/theodorton/veksel/compare/v0.1.0...v0.2.0 ) (2024-02-29)
2
8
3
9
### ⚠ BREAKING CHANGES
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- veksel (0.2.0 )
4
+ veksel (0.2.1 )
5
5
activerecord
6
6
pg
7
7
rails (>= 7.1.0 , < 8 )
Original file line number Diff line number Diff line change @@ -63,6 +63,28 @@ $ gem install veksel
63
63
- Explicit/optional branching
64
64
- Other database drivers
65
65
66
+ ## Release process
67
+
68
+ ``` shell
69
+ # Bump version number in lib/veksel/version.rb
70
+
71
+ # Update lockfile
72
+ bundle install
73
+
74
+ # Update changelog, review manually before committing
75
+ conventional-changelog -p conventionalcommits -i CHANGELOG.md -s
76
+ git commit -m ' chore(release): x.y.z'
77
+ git push origin
78
+ git tag vx.y.z
79
+ git push origin vx.y.z
80
+
81
+ # Build and push gem
82
+ gem build
83
+ gem push veksel-x.y.z.gem
84
+
85
+ # Upload the veksel-x-y-z.gem file to the Github release page
86
+ ```
87
+
66
88
## Sponsors
67
89
68
90
Veksel is sponsored by [ Skalar] ( https://github.com/Skalar )
Original file line number Diff line number Diff line change 1
1
module Veksel
2
- VERSION = "0.2.0 "
2
+ VERSION = "0.2.1 "
3
3
end
You can’t perform that action at this time.
0 commit comments