Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the incorrect license in the gemspec. Should be BSD-2-clause. #96

Merged
merged 1 commit into from
Jun 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 (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:
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 (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

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
Loading