From 8fe0ff1997ddbcec6e6886f9a97ad06b4f80337c Mon Sep 17 00:00:00 2001 From: kelvinqian00 Date: Wed, 7 Feb 2024 11:28:36 -0500 Subject: [PATCH] Update CHANGELOG and version number --- CHANGELOG.md | 7 +++++++ README.md | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fce873d..72487a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v0.3.0 + +- Add support for RDF List syntactic sugar. +- Add support for blank node vector syntactic sugar. +- Modify the AST tree for triples to support the new features and to remove redundant nodes in the tree. +- Rework blank node validation to make the implementation simpler (this results in minor changes to the error output). + ## v0.2.1 - Update GitHub Actions CI and CD to remove deprecation warnings. diff --git a/README.md b/README.md index 8b593d4..59f8ec6 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ If you are using Apache Jena, check out the [flint-jena](https://github.com/yeta Add the following to your `deps.edn` map. ```clojure -com.yetanalytics/flint {:mvn/version "0.2.1" +com.yetanalytics/flint {:mvn/version "0.3.0" :exclusions [org.clojure/clojure org.clojure/clojurescript]} ```