gopad 1.8.1 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddd32179053147f393897cda9e67e890194a43763bbde5008cb413af199e0737
4
- data.tar.gz: a758b4b13740bfb262c48fcceda42dc583c1d561d0af52b3f303b67edd15d68a
3
+ metadata.gz: c111f79183f774524014315abdfdc3bcaa6b63cff285e0f97d9dc37c6038963a
4
+ data.tar.gz: 82245c2c8f167cbe33c55e3696ca1feb0f6f97509881e3d9fbd9827f3ec8a2a0
5
5
  SHA512:
6
- metadata.gz: 6b787eb517903c0e49f7345cf7e7ca2f77bd994197cb31dc19fc1f7dac0b5678517e54f625e92c1f2c22d6560dcc7e65591a7928ee47887eff52599d8ccf0bd1
7
- data.tar.gz: d8777766dd49cdf46f0140673fb6f029fbcef2832fbfc13541937813af626c820e505067273abeb7103fa62993b83a2232654ab423ea77c3e21399634ca47576
6
+ metadata.gz: e1e4208654c73503b53dc35a9c3518b1ea32458e58e8691f10e8a034bac382a5622f5db29511726f584276c5824577e6f3b12fe7eaa81a6a0c4d6387a6e4d5c0
7
+ data.tar.gz: 2dcc892da550419f2a8b2363352ae0d2381187fa4082acdbbf19b03cfa6d5d3a1b5b5bc27dec94590902ee18616feaa355a108ca6de9282895eae29af7668ba8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.10.0](https://github.com/gopad/gopad-ruby/compare/v1.9.0...v1.10.0) (2024-12-30)
4
+
5
+
6
+ ### Features
7
+
8
+ * **deps:** update dependency ruby to v3.4.0 ([#86](https://github.com/gopad/gopad-ruby/issues/86)) ([7ca3fdb](https://github.com/gopad/gopad-ruby/commit/7ca3fdb6641f2ac87724262a429b72726f6c68a7))
9
+
10
+ ## [1.9.0](https://github.com/gopad/gopad-ruby/compare/v1.8.1...v1.9.0) (2024-12-16)
11
+
12
+
13
+ ### Features
14
+
15
+ * automated openapi client update ([2ced16d](https://github.com/gopad/gopad-ruby/commit/2ced16d4c018db72333e5d8cd5055a978e570f0a))
16
+ * **deps:** update dependency rexml to v3.4.0 ([#85](https://github.com/gopad/gopad-ruby/issues/85)) ([0f71990](https://github.com/gopad/gopad-ruby/commit/0f71990eb836f83856ce2f33acf8651ce57f52fb))
17
+
18
+
19
+ ### Bugfixes
20
+
21
+ * **deps:** update dependency rubocop to v1.69.2 ([#83](https://github.com/gopad/gopad-ruby/issues/83)) ([eb2b6bd](https://github.com/gopad/gopad-ruby/commit/eb2b6bdfc7d105dde9c8829fd800914c36e9875e))
22
+
3
23
  ## [1.8.1](https://github.com/gopad/gopad-ruby/compare/v1.8.0...v1.8.1) (2024-12-09)
4
24
 
5
25
 
data/README.md CHANGED
@@ -6,7 +6,7 @@ This repository provides a client SDK for Ruby. This SDK is automatically
6
6
  generated by the [OpenAPI Generator][generator] project:
7
7
 
8
8
  - API version: 1.0.0-alpha1
9
- - Package version: 1.8.1
9
+ - Package version: 1.10.0
10
10
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
11
11
 
12
12
  For more information, please visit [https://gopad.eu](https://gopad.eu)
@@ -21,7 +21,7 @@ the built gem:
21
21
 
22
22
  ```console
23
23
  gem build gopad.gemspec
24
- gem install ./gopad-1.8.1.gem
24
+ gem install ./gopad-1.10.0.gem
25
25
  ```
26
26
 
27
27
  ### Install from Rubygems
@@ -30,7 +30,7 @@ If you want to use a a properly released version hosted Rubygems you just need
30
30
  to add the following line to your Gemfile:
31
31
 
32
32
  ```ruby
33
- gem 'gopad', '~> 1.8.1'
33
+ gem 'gopad', '~> 1.10.0'
34
34
  ```
35
35
 
36
36
  ### Install from Git
@@ -367,7 +367,7 @@ module Gopad
367
367
  # @see https://github.com/lostisland/faraday/blob/v2.3.0/lib/faraday/rack_builder.rb#L92-L143
368
368
  def set_faraday_middleware(operation, key, *args, &block)
369
369
  unless %i[request response use insert insert_before insert_after swap delete].include?(operation)
370
- raise ArgumentError, "Invalid faraday middleware operation #{operation}. Must be " \
370
+ raise ArgumentError, "Invalid faraday middleware operation #{operation}. Must be " \
371
371
  ':request, :response, :use, :insert, :insert_before, :insert_after, :swap or :delete.'
372
372
  end
373
373
 
data/lib/gopad/version.rb CHANGED
@@ -9,5 +9,5 @@
9
9
  #
10
10
 
11
11
  module Gopad
12
- VERSION = '1.8.1'.freeze
12
+ VERSION = '1.10.0'.freeze
13
13
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gopad
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.1
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas Boerger
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-12-09 00:00:00.000000000 Z
10
+ date: 2024-12-30 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: faraday
@@ -94,7 +93,6 @@ licenses:
94
93
  - Apache-2.0
95
94
  metadata:
96
95
  rubygems_mfa_required: 'true'
97
- post_install_message:
98
96
  rdoc_options: []
99
97
  require_paths:
100
98
  - lib
@@ -109,8 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
107
  - !ruby/object:Gem::Version
110
108
  version: '0'
111
109
  requirements: []
112
- rubygems_version: 3.5.22
113
- signing_key:
110
+ rubygems_version: 3.6.2
114
111
  specification_version: 4
115
112
  summary: Etherpad for markdown with Go
116
113
  test_files: []