From 8aaf02909fe2a67bc64f4afc33f1b004ba56221f Mon Sep 17 00:00:00 2001 From: Falko Galperin Date: Sat, 8 Jul 2023 16:59:38 +0200 Subject: [PATCH 1/3] chore: allow Dart 3.0 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index c5e2f4c..b691a6d 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -4,7 +4,7 @@ version: 0.1.0 repository: https://github.com/namib-project/dart_dcaf environment: - sdk: '>=2.17.0 <3.0.0' + sdk: '>=2.17.0 <4.0.0' dependencies: cbor: ^6.0.0 From 0d92e5ad5e4e99633cfd1d697a6671e4540f049c Mon Sep 17 00:00:00 2001 From: Falko Galperin Date: Sat, 8 Jul 2023 17:00:57 +0200 Subject: [PATCH 2/3] chore: increase version number to 0.1.1 --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index b691a6d..21f0f63 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: dcaf description: An implementation of the ACE-OAuth framework, intended for OAuth clients. Its main feature is CBOR-(de-)serializable data models. -version: 0.1.0 +version: 0.1.1 repository: https://github.com/namib-project/dart_dcaf environment: From 4090b46e01e93d059d84749e65081d7a47aff494 Mon Sep 17 00:00:00 2001 From: Falko Galperin Date: Sat, 8 Jul 2023 17:07:52 +0200 Subject: [PATCH 3/3] chore: update CHANGELOG to include new version --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d6cf67..cb5e37e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.1.1 --- 2023-07-08 +- Updated Dart SDK version constraints to include Dart 3.0. +- Includes changes from #1 (thanks, @JKRhb!) + - Updated `cbor` dependency to 6.0.0. + - Replaced deprecated linting rules. + - Added GitHub Actions workflow. + ## 0.1.0 --- 2022-05-12 ### Changed