Skip to content

Commit 1b7c329

Browse files
committed
chore(release): v0.2.1
1 parent 8032818 commit 1b7c329

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
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+
17
## [0.2.0](https://github.com/theodorton/veksel/compare/v0.1.0...v0.2.0) (2024-02-29)
28

39
### ⚠ BREAKING CHANGES

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
veksel (0.2.0)
4+
veksel (0.2.1)
55
activerecord
66
pg
77
rails (>= 7.1.0, < 8)

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,28 @@ $ gem install veksel
6363
- Explicit/optional branching
6464
- Other database drivers
6565

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+
6688
## Sponsors
6789

6890
Veksel is sponsored by [Skalar](https://github.com/Skalar)

lib/veksel/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Veksel
2-
VERSION = "0.2.0"
2+
VERSION = "0.2.1"
33
end

0 commit comments

Comments
 (0)