Skip to content

Commit 6a87839

Browse files
committed
docs: Update to 3.6.1
1 parent aa8d767 commit 6a87839

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.6.1] - 2025-12-19
10+
### Fixed
11+
- Fixed broken 3.6.0 release
12+
913
## [3.6.0] - 2025-12-10
1014
### Added
1115
- Added `tag_handling_version` parameter to `translate()` to specify which version of the tag handling algorithm to use. Options are `v1` and `v2`.
@@ -14,6 +18,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1418
- `extra_body_parameters` will no longer cast values to string, as this library sends JSON-encoded requests
1519
(allows e.g. sending booleans)
1620

21+
## [3.5.1] - 2025-12-19
22+
### Fixed
23+
- Fixed broken 3.5.0 release
24+
1725
## [3.5.0] - 2025-12-03
1826
### Added
1927
- Added `custom_instructions` parameter to `translate()` to customize translation
@@ -23,6 +31,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2331
model type as the default. Requests combining `custom_instructions` and the
2432
`latency_optimized` model type will be rejected.
2533

34+
## [3.4.1] - 2025-12-19
35+
### Fixed
36+
- Fixed broken 3.4.0 release
37+
2638
## [3.4.0] - 2025-11-17
2739
### Added
2840
- Added support for the `GET /v3/style_rules` endpoint in the client library, the
@@ -90,9 +102,12 @@ The change in major version is only due to the change in maintainership, there i
90102
### Fixed
91103
- Make RequestEntityTooLarge error message more clear
92104

93-
[Unreleased]: https://github.com/DeepLcom/deepl-rb/compare/v3.6.0...HEAD
94-
[3.6.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.5.0...v3.6.0
95-
[3.5.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.4.0...v3.5.0
105+
[Unreleased]: https://github.com/DeepLcom/deepl-rb/compare/v3.6.1...HEAD
106+
[3.6.1]: https://github.com/DeepLcom/deepl-rb/compare/v3.6.0...v3.6.1
107+
[3.6.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.5.1...v3.6.0
108+
[3.5.1]: https://github.com/DeepLcom/deepl-rb/compare/v3.5.0...v3.5.1
109+
[3.5.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.4.1...v3.5.0
110+
[3.4.1]: https://github.com/DeepLcom/deepl-rb/compare/v3.4.0...v3.4.1
96111
[3.4.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.3.0...v3.4.0
97112
[3.3.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.2.0...v3.3.0
98113
[3.2.0]: https://github.com/DeepLcom/deepl-rb/compare/v3.1.0...v3.2.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.6.0
1+
3.6.1

deepl-rb.gemspec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
# DO NOT EDIT THIS FILE DIRECTLY
33
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
44
# -*- encoding: utf-8 -*-
5-
# stub: deepl-rb 3.6.0 ruby lib
5+
# stub: deepl-rb 3.6.1 ruby lib
66

77
Gem::Specification.new do |s|
88
s.name = "deepl-rb".freeze
9-
s.version = "3.6.0"
9+
s.version = "3.6.1"
1010

1111
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
1212
s.metadata = { "bug_tracker_uri" => "https://github.com/DeepLcom/deepl-rb/issues", "changelog_uri" => "https://github.com/DeepLcom/deepl-rb/blob/main/CHANGELOG.md", "documentation_uri" => "https://github.com/DeepLcom/deepl-rb/blob/main/README.md", "homepage_uri" => "https://github.com/DeepLcom/deepl-rb" } if s.respond_to? :metadata=
1313
s.require_paths = ["lib".freeze]
1414
s.authors = ["DeepL SE".freeze]
15-
s.date = "2025-12-10"
15+
s.date = "2025-12-19"
1616
s.description = "Official Ruby library for the DeepL language translation API (v2). For more information, check this: https://www.deepl.com/docs/api-reference.html".freeze
1717
s.email = "open-source@deepl.com".freeze
1818
s.extra_rdoc_files = [
@@ -109,13 +109,13 @@ Gem::Specification.new do |s|
109109
"spec/integration_tests/document_api_spec.rb",
110110
"spec/integration_tests/integration_test_utils.rb",
111111
"spec/integration_tests/style_rule_api_spec.rb",
112+
"spec/requests/extra_body_parameters_types_spec.rb",
112113
"spec/requests/glossary/create_spec.rb",
113114
"spec/requests/glossary/destroy_spec.rb",
114115
"spec/requests/glossary/entries_spec.rb",
115116
"spec/requests/glossary/find_spec.rb",
116117
"spec/requests/glossary/language_pairs_spec.rb",
117118
"spec/requests/glossary/list_spec.rb",
118-
"spec/requests/extra_body_parameters_types_spec.rb",
119119
"spec/requests/languages_spec.rb",
120120
"spec/requests/rephrase_spec.rb",
121121
"spec/requests/translate_spec.rb",
@@ -137,3 +137,4 @@ Gem::Specification.new do |s|
137137
s.add_development_dependency(%q<juwelier>.freeze, [">= 0"])
138138
s.add_development_dependency(%q<byebug>.freeze, [">= 0"])
139139
end
140+

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
# frozen_string_literal: true
55

66
module DeepL
7-
VERSION = '3.6.0'
7+
VERSION = '3.6.1'
88
end

0 commit comments

Comments
 (0)