From 8e41f60320a947dfd59a194bfa705c2a696524cd Mon Sep 17 00:00:00 2001 From: Anupam Sengupta Date: Mon, 19 Jun 2023 14:48:12 -0400 Subject: [PATCH] Fixed the incorrect license in the `gemspec`. Should be `BSD-2-clause`. Was incorrectly specified as BSD-3-Clause-Clear. For reference, this is the _exact_ license being used: [BSD-2-Clause](https://spdx.org/licenses/BSD-2-Clause.html) --- Gemfile.lock | 2 +- lib/tree/version.rb | 4 ++-- rubytree.gemspec | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 784b291..60966fa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - rubytree (2.0.0) + rubytree (2.0.1) json (~> 2.0, > 2.3.1) GEM diff --git a/lib/tree/version.rb b/lib/tree/version.rb index d7f514f..622475d 100644 --- a/lib/tree/version.rb +++ b/lib/tree/version.rb @@ -4,7 +4,7 @@ # # Author:: Anupam Sengupta (anupamsg@gmail.com) # -# Copyright (c) 2012-2022 Anupam Sengupta. All rights reserved. +# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -35,5 +35,5 @@ module Tree # Rubytree Package Version - VERSION = '2.0.0' + VERSION = '2.0.1' end diff --git a/rubytree.gemspec b/rubytree.gemspec index 1c7346c..52dd4c3 100644 --- a/rubytree.gemspec +++ b/rubytree.gemspec @@ -3,7 +3,7 @@ # # Author:: Anupam Sengupta (anupamsg@gmail.com) # -# Copyright (c) 2012-2022 Anupam Sengupta. All rights reserved. +# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved. # # frozen_string_literal: true @@ -12,7 +12,7 @@ require File.join(__dir__, '/lib/tree/version') Gem::Specification.new do |s| s.name = 'rubytree' s.version = Tree::VERSION - s.license = 'BSD-3-Clause-Clear' + s.license = 'BSD-2-Clause' # NOTE: s.date should NOT be assigned. It is automatically set to pkg date. s.platform = Gem::Platform::RUBY s.author = 'Anupam Sengupta'