Skip to content

Commit a807558

Browse files
github-actions[bot]nebolsin
authored andcommitted
chore(main): release 3.0.3
1 parent cacd9f0 commit a807558

File tree

3 files changed

+15
-8
lines changed

3 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
### [3.0.3](https://github.com/astroband/ruby-xdr/compare/v3.0.2...v3.0.3) (2022-02-18)
9+
### Bug Fixes
10+
- make `XDR::Option` write empty strings as values ([#15](https://github.com/astroband/ruby-xdr/issues/15)) ([ccab229](https://github.com/astroband/ruby-xdr/commit/ccab22928a1104dee525211b51d1d567079d27ba))
11+
12+
813
## [3.0.2](https://github.com/astroband/ruby-xdr/compare/v3.0.1...v3.0.2) - 2020-10-20
914
### Changed
1015
- Relax lower bound for ActiveSupport dependency to support usage in Rails 4.2 ([#12](https://github.com/astroband/ruby-xdr/pull/12))
1116

12-
### Fixed
17+
### Bug Fixes
1318
- Fix non-bang arm accessors for XDR::Union ([#13](https://github.com/astroband/ruby-xdr/pull/13))
1419
- Fix .from_xdr encoding param to accept symbols ([#14](https://github.com/astroband/ruby-xdr/pull/14))
1520

21+
1622
## [3.0.1](https://github.com/astroband/ruby-xdr/compare/v3.0.0...v3.0.1) - 2020-06-10
1723
### Added
1824
- Add encoding parameter to Union#to_xdr ([#7](https://github.com/astroband/ruby-xdr/pull/7)).
1925

20-
### Fixed
26+
### Bug Fixes
2127
- Padding bytes are now properly validated when reading xdr values. According to the XDR spec, padding must be zeros.
2228

29+
2330
## [1.0.0](https://github.com/astroband/ruby-xdr/compare/v0.1.0...v1.0.0) - 2015-10-02
2431
### Added
2532
- the `to_xdr` helpers can take a second parameter that will encode the resulting output to hex or base64 when requested.

Gemfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
PATH
22
remote: .
33
specs:
4-
xdr (3.0.2)
4+
xdr (3.0.3)
55
activemodel (>= 4.2, < 8.0)
66
activesupport (>= 4.2, < 8.0)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activemodel (7.0.2)
12-
activesupport (= 7.0.2)
13-
activesupport (7.0.2)
11+
activemodel (7.0.2.2)
12+
activesupport (= 7.0.2.2)
13+
activesupport (7.0.2.2)
1414
concurrent-ruby (~> 1.0, >= 1.0.2)
1515
i18n (>= 1.6, < 2)
1616
minitest (>= 5.1)
@@ -48,7 +48,7 @@ GEM
4848
guard-compat (~> 1.1)
4949
rspec (>= 2.99.0, < 4.0)
5050
hashdiff (1.0.1)
51-
i18n (1.9.1)
51+
i18n (1.10.0)
5252
concurrent-ruby (~> 1.0)
5353
listen (3.7.1)
5454
rb-fsevent (~> 0.10, >= 0.10.3)

lib/xdr/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module XDR
2-
VERSION = "3.0.2"
2+
VERSION = "3.0.3"
33
end

0 commit comments

Comments
 (0)