From ca39aa24d214ed357ba791737351a44bdcf09f5f Mon Sep 17 00:00:00 2001 From: Maxime Lecoq Date: Wed, 18 Jan 2023 17:47:17 +0100 Subject: [PATCH] Add the dependency to json-ld --- CHANGELOG.md | 11 +++++++---- semantizer.gemspec | 4 +++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c398383..6c8fc34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 None. +## [1.0.1] - 2023-01-18 + +### Fixed + +- Add a runtime dependency to `json-ld`. + ## [1.0.0] - 2023-01-12 ### Added @@ -21,10 +27,6 @@ None. - The classes are now accessed through the `VirtualAssembly::Semantizer` module (instead of just the `Semantizer` module). - The `SemanticObject` is now a module instead of a class. -### Fixed - -- - ## [1.0.0-alpha] - 2023-01-05 ### Added @@ -34,5 +36,6 @@ None. - Gemspec file. [unreleased]: https://github.com/assemblee-virtuelle/semantizer-ruby/compare/v1.0.0...HEAD +[1.0.1]: https://github.com/assemblee-virtuelle/semantizer-ruby/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/assemblee-virtuelle/semantizer-ruby/compare/v1.0.0-alpha...v1.0.0 [1.0.0-alpha]: https://github.com/assemblee-virtuelle/semantizer-ruby/releases/tag/v1.0.0-alpha diff --git a/semantizer.gemspec b/semantizer.gemspec index eb4e770..ac083c3 100644 --- a/semantizer.gemspec +++ b/semantizer.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = "virtual_assembly-semantizer" - s.version = "1.0.0" + s.version = "1.0.1" s.summary = "Semantizer" s.description = "A library to add linked data to your models" s.authors = ["Maxime Lecoq"] @@ -9,4 +9,6 @@ Gem::Specification.new do |s| s.homepage = "https://github.com/assemblee-virtuelle/semantizer-ruby/" s.license = "MIT" + + s.add_runtime_dependency "json-ld", "~> 3.2", ">= 3.2.3" end \ No newline at end of file