Skip to content

Commit d89bc68

Browse files
committed
chore(release): release version 0.32.1
1 parent 4b5abbc commit d89bc68

File tree

3 files changed

+23
-9
lines changed

3 files changed

+23
-9
lines changed

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7-
## [Unreleased]
8-
9-
### Added
10-
11-
### Changed
7+
## [0.32.0 – 2025-02-20]
8+
This minor release fixes a javascript issue in oxidized-web, which is included
9+
in the Docker container of oxidized.
1210

1311
### Fixed
1412
- powerconnect: Hide enable, and line secrets. Further Fixes #1212 (#clifcox)

docs/Release.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,24 @@ all the changes that have been done. Have a specific look at changes you don't u
77

88
For a graphical compare, use `git difftool -d 0.30.0..master`.
99

10-
## Test, test test!
11-
Test the git code and the container against as much device types an environments as you can.
10+
## Update the gem dependencies to the latest versions
11+
```
12+
bundle outaded
13+
bundle update
14+
bundle outaded
15+
```
16+
17+
## Update rubocup .rubocop_todo.yml
18+
Run `bundle exec rubocop --auto-gen-config`,
19+
and make sure `bundle exec rake` passes after it.
20+
21+
If you change some code => Restart the release process at the beginning ;-)
22+
23+
## Make sure the file permissions are correct
24+
Run `bundle exec rake chmod`
25+
26+
## Test !
27+
Test the git code and the container against as much device types and environments as you can.
1228

1329
Do not integrate late PRs into master if they do not fix issues for the release. The must wait for the next release.
1430

lib/oxidized/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module Oxidized
2-
VERSION = '0.32.0'.freeze
3-
VERSION_FULL = '0.32.0'.freeze
2+
VERSION = '0.32.1'.freeze
3+
VERSION_FULL = '0.32.1'.freeze
44
def self.version_set
55
version_full = %x(git describe --tags).chop rescue ""
66
version = %x(git describe --tags --abbrev=0).chop rescue ""

0 commit comments

Comments
 (0)