From 7f9a3198dc7866f2d79029f3ada7c0e23e17c6de Mon Sep 17 00:00:00 2001 From: Serhii Mamontov Date: Fri, 3 Nov 2023 12:27:03 +0200 Subject: [PATCH] Update license information (#154) chore(license): update license information --- .pubnub.yml | 13 +++++++++---- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- LICENSE => LICENSE.txt | 0 VERSION | 2 +- lib/pubnub/version.rb | 2 +- pubnub.gemspec | 2 +- 7 files changed, 19 insertions(+), 8 deletions(-) rename LICENSE => LICENSE.txt (100%) diff --git a/.pubnub.yml b/.pubnub.yml index cf458d9b1..276b97d19 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,6 +1,11 @@ --- -version: "5.3.0" +version: "5.3.1" changelog: + - date: 2023-11-03 + version: v5.3.1 + changes: + - type: improvement + text: "Update license information." - date: 2023-10-16 version: v5.3.0 changes: @@ -670,7 +675,7 @@ sdks: - x86-64 - distribution-type: package distribution-repository: RubyGems - package-name: pubnub-5.3.0.gem + package-name: pubnub-5.3.1.gem location: https://rubygems.org/gems/pubnub requires: - name: addressable @@ -775,8 +780,8 @@ sdks: - x86-64 - distribution-type: library distribution-repository: GitHub release - package-name: pubnub-5.3.0.gem - location: https://github.com/pubnub/ruby/releases/download/v5.3.0/pubnub-5.3.0.gem + package-name: pubnub-5.3.1.gem + location: https://github.com/pubnub/ruby/releases/download/v5.3.1/pubnub-5.3.1.gem requires: - name: addressable min-version: 2.0.0 diff --git a/CHANGELOG.md b/CHANGELOG.md index d45a5f06b..42c01f04d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v5.3.1 +November 03 2023 + +#### Modified +- Update license information. + ## v5.3.0 October 16 2023 diff --git a/Gemfile.lock b/Gemfile.lock index 18a2bc9e8..3a37b87ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - pubnub (5.3.0) + pubnub (5.3.1) addressable (>= 2.0.0) concurrent-ruby (~> 1.1.5) concurrent-ruby-edge (~> 0.5.0) diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/VERSION b/VERSION index 03f488b07..c7cb1311a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.3.0 +5.3.1 diff --git a/lib/pubnub/version.rb b/lib/pubnub/version.rb index 11ae6978f..26ed0e6fa 100644 --- a/lib/pubnub/version.rb +++ b/lib/pubnub/version.rb @@ -1,4 +1,4 @@ # Toplevel Pubnub module. module Pubnub - VERSION = '5.3.0'.freeze + VERSION = '5.3.1'.freeze end diff --git a/pubnub.gemspec b/pubnub.gemspec index 0a5ee66f2..e40479962 100644 --- a/pubnub.gemspec +++ b/pubnub.gemspec @@ -10,7 +10,7 @@ Gem::Specification.new do |spec| spec.summary = 'PubNub Official Ruby gem.' spec.description = 'Ruby anywhere in the world in 250ms with PubNub!' spec.homepage = 'https://github.com/pubnub/ruby' - spec.licenses = %w[MIT LicenseRef-LICENSE] + spec.licenses = ['LicenseRef-LICENSE.txt'] spec.files = `git ls-files -z`.split("\x0").grep_v(/^(test|spec|fixtures)/) spec.executables = spec.files.grep(%r{^bin\/}) { |f| File.basename(f) }