oxidized 0.30.0 → 0.30.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/docs/Release.md +62 -0
- data/lib/oxidized/version.rb +2 -2
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 408f73ee50ed7040fab6c0034d197c5755f4d1042e8f9923ab8159fd90d36497
|
|
4
|
+
data.tar.gz: 747b1a2c42d53a8eb1903b61119f7184b8fe78c2ea240d879523c6d8758cc42a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 216511de21f3497c2cf36f22b379b3eba411e39e969544e7a6fb0d5ec60e725d2086621f8c803cfef3fb88655fd27d78a1973a2df947712a3ee124f7189c5293
|
|
7
|
+
data.tar.gz: 567883bf03d9e46c0df4f4fead4e361f7a2b30e648cad01e994da14a705d99cd7e06763de9f8f8aedc87578757df02e2fad9bda343fd08dca22770d3478a4ebb
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
+
|
|
8
|
+
## [0.30.1 – 2024-04-12]
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- document the release process (@robertcheramy)
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- The version string was not set correctly (@robertcheramy)
|
|
15
|
+
|
|
16
|
+
|
|
7
17
|
## [0.30.0 – 2024-04-11]
|
|
8
18
|
|
|
9
19
|
### Added
|
data/docs/Release.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# How to release a new version of Oxidized?
|
|
2
|
+
This document is targeted at oxidized maintainers. It describes the release process.
|
|
3
|
+
|
|
4
|
+
## Review changes
|
|
5
|
+
Run `git diff 0.30.0..master` (where `0.30.0` is to be changed to the last release) and review
|
|
6
|
+
all the changes that have been done. Have a specific look at changes you don't understand.
|
|
7
|
+
|
|
8
|
+
## Test, test test!
|
|
9
|
+
Test the git code and the container against as much device types an environments as you can.
|
|
10
|
+
|
|
11
|
+
Do not integrate late PRs into master if they do not fix issues for the release. The must wait for the next release.
|
|
12
|
+
|
|
13
|
+
## Version numbering
|
|
14
|
+
Oxidized versions are nummered like 0.major.minor
|
|
15
|
+
- major is incremented when releasing new features. minor is then set to 0
|
|
16
|
+
- minor is incremented when releasing fixes only, just after a major version.
|
|
17
|
+
|
|
18
|
+
## Release
|
|
19
|
+
1. Checkout the master branch of oxidized. Make sure you are up to date with origin.
|
|
20
|
+
2. Change the version in lib/oxidized/version.rb
|
|
21
|
+
3. Change CHANGELOG.md to replace [Unreleased] with [0.xx.yy – 202Y-MM-DD]
|
|
22
|
+
4. Run `git diff` to check your changes
|
|
23
|
+
5. Commit the changes to the local git repository with a commit message “chore(release): release version 0.xx.yy”
|
|
24
|
+
6. Tag the commit with `git tag -a 0.xx.yy -m "Release 0.xx.yy"`
|
|
25
|
+
7. Push the change and the tag to github:
|
|
26
|
+
```
|
|
27
|
+
git push
|
|
28
|
+
git push origin 0.xx.yy
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Release in github
|
|
32
|
+
Make a release from the tag in github
|
|
33
|
+
- Thank the contributors
|
|
34
|
+
- Only describe major changes, and refer to CHANGELOG.md
|
|
35
|
+
- List new contributors (generated automatically)
|
|
36
|
+
|
|
37
|
+
## Release in rubygems
|
|
38
|
+
1. Build the gem with ‘rake build’
|
|
39
|
+
2. Install an test the gem locally
|
|
40
|
+
```
|
|
41
|
+
gem install --user-install pkg/oxidized-0.30.0.gem
|
|
42
|
+
~/.local/share/gem/ruby/3.1.0/bin/oxidized
|
|
43
|
+
```
|
|
44
|
+
3. Push the gem with ‘rake push’
|
|
45
|
+
|
|
46
|
+
You need an account at rubygems which is allowed to push oxidized
|
|
47
|
+
|
|
48
|
+
## Release in docker.io
|
|
49
|
+
The OCI-Containter is automatically build and pushed to docker.io by github
|
|
50
|
+
|
|
51
|
+
## Update CHANGELOG.md for next release
|
|
52
|
+
Add
|
|
53
|
+
```
|
|
54
|
+
## [Unreleased]
|
|
55
|
+
|
|
56
|
+
### Added
|
|
57
|
+
|
|
58
|
+
### Changed
|
|
59
|
+
|
|
60
|
+
### Fixed
|
|
61
|
+
|
|
62
|
+
```
|
data/lib/oxidized/version.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
module Oxidized
|
|
2
|
-
VERSION = '0.30.
|
|
3
|
-
VERSION_FULL = '0.30.
|
|
2
|
+
VERSION = '0.30.1'.freeze
|
|
3
|
+
VERSION_FULL = '0.30.1'.freeze
|
|
4
4
|
def self.version_set
|
|
5
5
|
version_full = %x(git describe --tags).chop rescue ""
|
|
6
6
|
version = %x(git describe --tags --abbrev=0).chop rescue ""
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: oxidized
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.30.
|
|
4
|
+
version: 0.30.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Saku Ytti
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2024-04-
|
|
13
|
+
date: 2024-04-12 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: asetus
|
|
@@ -377,6 +377,7 @@ files:
|
|
|
377
377
|
- docs/Model-Notes/Viptela.md
|
|
378
378
|
- docs/Model-Notes/XGS4600-Zyxel.md
|
|
379
379
|
- docs/Outputs.md
|
|
380
|
+
- docs/Release.md
|
|
380
381
|
- docs/Ruby-API.md
|
|
381
382
|
- docs/Sources.md
|
|
382
383
|
- docs/Supported-OS-Types.md
|