File tree Expand file tree Collapse file tree 3 files changed +23
-9
lines changed
Expand file tree Collapse file tree 3 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -4,11 +4,9 @@ All notable changes to this project will be documented in this file.
44
55The 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)
Original file line number Diff line number Diff line change @@ -7,8 +7,24 @@ all the changes that have been done. Have a specific look at changes you don't u
77
88For 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
1329Do not integrate late PRs into master if they do not fix issues for the release. The must wait for the next release.
1430
Original file line number Diff line number Diff line change 11module 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 ""
You can’t perform that action at this time.
0 commit comments