From a708d54b0aa917f056d3570d8ee54fcbd572d3da Mon Sep 17 00:00:00 2001 From: Aleksey Kulikov Date: Wed, 8 Jun 2022 15:39:19 +0300 Subject: [PATCH] chore: v1.1.1 --- CHANGELOG.md | 8 +++++++- macos/libgit2dart.podspec | 2 +- pubspec.yaml | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4917c66..7156b40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.1.1 + +- fix: lookup library in correct locations + +- feat: add ability to pass optional notes location to `Note.list(...)` method + ## 1.1.0 - feat: add ability to get and set libgit2 global options @@ -6,7 +12,7 @@ - feat: add ability to remove entries in index with `resetDefault(...)` method -- feat: add ability to compare objects (value based equality). +- feat: add ability to compare objects (value based equality) Note: comparison of Repository objects have naive implementation. Comparison is based on repository path, and previously loaded into memory index, odb, etc. might be different. Use with caution. diff --git a/macos/libgit2dart.podspec b/macos/libgit2dart.podspec index 2a2ab92..756018f 100644 --- a/macos/libgit2dart.podspec +++ b/macos/libgit2dart.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'libgit2dart' - s.version = '1.1.0' + s.version = '1.1.1' s.summary = 'Dart bindings to libgit2.' s.description = <<-DESC Dart bindings to libgit2. diff --git a/pubspec.yaml b/pubspec.yaml index f4591ed..696d650 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -2,7 +2,7 @@ name: libgit2dart description: Dart bindings to libgit2, provides ability to use libgit2 library in Dart and Flutter. -version: 1.1.0 +version: 1.1.1 homepage: https://github.com/SkinnyMind/libgit2dart