From a1654ebe40c4eb519d76cf0dd9b408c41fe806cd Mon Sep 17 00:00:00 2001 From: Anamarija Balaban <36743958+anamarijabalaban@users.noreply.github.com> Date: Fri, 14 Jul 2023 09:06:37 +0200 Subject: [PATCH 1/4] Create LICENSE file --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ecdc7b1 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 Infinum + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. From 9c51b79b1b0270136de6a0b06119e60bdfda383c Mon Sep 17 00:00:00 2001 From: anamarijabalaban Date: Tue, 25 Jul 2023 08:18:58 +0200 Subject: [PATCH 2/4] Add license to gemspec file --- enumerations.gemspec | 1 + 1 file changed, 1 insertion(+) diff --git a/enumerations.gemspec b/enumerations.gemspec index ebafbaa..669ff30 100644 --- a/enumerations.gemspec +++ b/enumerations.gemspec @@ -7,6 +7,7 @@ Gem::Specification.new do |s| s.summary = 'Enumerations for ActiveRecord!' s.description = 'Extends ActiveRecord with enumeration capabilites.' s.homepage = 'https://github.com/infinum/enumerations' + s.license = 'MIT' s.authors = [ 'Tomislav Car', 'Nikica Jokić', 'Nikola Santić', 'Stjepan Hadjić', 'Petar Ćurković' From 4d34ab641058b48526b25e25abfca0c4ceb2eccf Mon Sep 17 00:00:00 2001 From: anamarijabalaban Date: Fri, 1 Sep 2023 08:30:56 +0200 Subject: [PATCH 3/4] Update changelog --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8abbf4..3272573 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## [v2.5.4](https://github.com/infinum/enumerations/tree/v2.5.4) (2023-01-09) +[Full Changelog](https://github.com/infinum/enumerations/compare/v2.5.3...v2.5.4) + +**Implemented enhancements:** + +- Add MIT license file. + ## [v2.5.3](https://github.com/infinum/enumerations/tree/v2.5.3) (2022-02-02) [Full Changelog](https://github.com/infinum/enumerations/compare/v2.5.2...v2.5.3) From f8371a38a40f41d4f559d14660902d1268ca90d8 Mon Sep 17 00:00:00 2001 From: anamarijabalaban Date: Fri, 1 Sep 2023 08:31:51 +0200 Subject: [PATCH 4/4] Bump version --- lib/enumerations/version.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/enumerations/version.rb b/lib/enumerations/version.rb index ae6b847..7c019fc 100644 --- a/lib/enumerations/version.rb +++ b/lib/enumerations/version.rb @@ -1,3 +1,3 @@ module Enumerations - VERSION = '2.5.3'.freeze + VERSION = '2.5.4'.freeze end