Skip to content

Commit

Permalink
Fixed the incorrect license in the gemspec. Should be BSD-2-clause.
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
evolve75 committed Jun 19, 2023
1 parent 60629c1 commit 8e41f60
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
rubytree (2.0.0)
rubytree (2.0.1)
json (~> 2.0, > 2.3.1)

GEM
Expand Down
4 changes: 2 additions & 2 deletions lib/tree/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# Author:: Anupam Sengupta ([email protected])
#
# 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:
Expand Down Expand Up @@ -35,5 +35,5 @@

module Tree
# Rubytree Package Version
VERSION = '2.0.0'
VERSION = '2.0.1'
end
4 changes: 2 additions & 2 deletions rubytree.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Author:: Anupam Sengupta ([email protected])
#
# Copyright (c) 2012-2022 Anupam Sengupta. All rights reserved.
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved.
#
# frozen_string_literal: true

Expand All @@ -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'
Expand Down

0 comments on commit 8e41f60

Please sign in to comment.