Skip to content

Commit e4af59c

Browse files
committed
Bump version to 0.34.2
1 parent 4abd9d6 commit e4af59c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ 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-
## HEAD [Unreleased]
7+
## [0.34.2 – 2025-08-01]
8+
This release mainly fixes a bug in input/scp that made ssh raise an error when
9+
closing a closed connection (Issue #3583).
10+
11+
A fix for config vars (Issue #3536) changes the way oxidized stores its
12+
vars internally (symblos => strings). Libraries depending on oxidized internal
13+
structures may have problem with this. oxidized-web was fixed in Release 0.17.1.
14+
815
### Added
916
- Absolute time limit for a fetch job (default: 300 seconds) (@robertcheramy)
1017

docs/Release.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ Test the git code and the container against as much device types and
3939
environments as you can.
4040

4141
## Bump the version
42-
Name the release branch `release/0.xx.yy`
43-
4442
Update CHANGELOG.md:
4543
- review it
4644
- add release notes

lib/oxidized/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# frozen_string_literal: true
22

33
module Oxidized
4-
VERSION = '0.34.1'
5-
VERSION_FULL = '0.34.1'
4+
VERSION = '0.34.2'
5+
VERSION_FULL = '0.34.2'
66
def self.version_set
77
version_full = %x(git describe --tags).chop rescue ""
88
version = %x(git describe --tags --abbrev=0).chop rescue ""

0 commit comments

Comments
 (0)