chore: prepare to publish

This commit is contained in:
Aleksey Kulikov 2022-05-05 16:56:02 +03:00
parent 64f6a475cc
commit 5dfedadfe6
4 changed files with 13 additions and 3 deletions

3
CHANGELOG.md Normal file
View file

@ -0,0 +1,3 @@
## 1.0.0
- Initial release.

View file

@ -1,3 +1,6 @@
/// Dart bindings to libgit2.
library libgit2dart;
export 'src/annotated.dart';
export 'src/blame.dart';
export 'src/blob.dart';

View file

@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'libgit2dart'
s.version = '0.0.1'
s.version = '1.0.0'
s.summary = 'Dart bindings to libgit2.'
s.description = <<-DESC
Dart bindings to libgit2.

View file

@ -1,6 +1,10 @@
name: libgit2dart
description: Dart bindings to libgit2
version: 0.0.1
description: Dart bindings to libgit2.
version: 1.0.0
homepage: https://github.com/SkinnyMind/libgit2dart
environment:
sdk: ">=2.17.0 <3.0.0"