Skip to content

Commit 8e41f60

Browse files
committed
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)
1 parent 60629c1 commit 8e41f60

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
rubytree (2.0.0)
4+
rubytree (2.0.1)
55
json (~> 2.0, > 2.3.1)
66

77
GEM

lib/tree/version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
# Author:: Anupam Sengupta (anupamsg@gmail.com)
66
#
7-
# Copyright (c) 2012-2022 Anupam Sengupta. All rights reserved.
7+
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved.
88
#
99
# Redistribution and use in source and binary forms, with or without
1010
# modification, are permitted provided that the following conditions are met:
@@ -35,5 +35,5 @@
3535

3636
module Tree
3737
# Rubytree Package Version
38-
VERSION = '2.0.0'
38+
VERSION = '2.0.1'
3939
end

rubytree.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Author:: Anupam Sengupta (anupamsg@gmail.com)
55
#
6-
# Copyright (c) 2012-2022 Anupam Sengupta. All rights reserved.
6+
# Copyright (c) 2012-2023 Anupam Sengupta. All rights reserved.
77
#
88
# frozen_string_literal: true
99

@@ -12,7 +12,7 @@ require File.join(__dir__, '/lib/tree/version')
1212
Gem::Specification.new do |s|
1313
s.name = 'rubytree'
1414
s.version = Tree::VERSION
15-
s.license = 'BSD-3-Clause-Clear'
15+
s.license = 'BSD-2-Clause'
1616
# NOTE: s.date should NOT be assigned. It is automatically set to pkg date.
1717
s.platform = Gem::Platform::RUBY
1818
s.author = 'Anupam Sengupta'

0 commit comments

Comments
 (0)