Skip to content

Commit

Permalink
[ Confirm ] confirming the first official release of the library
Browse files Browse the repository at this point in the history
  • Loading branch information
anasfik committed Feb 13, 2023
1 parent c52ab38 commit 6f0c55c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 1.0.0

- Added the rest of models methods.
- Added documentation and clarification
- Figured the way of sending requests with files
- Fixed the delete method issue resulting of returning nothin, with documenting the behavior of the library of it.

## 0.9.5

- Added implementation of getting collection.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: replicate
version: 0.9.5
version: 1.0.0
description: A community-maintained Dart client package for Replicate.com, this package let you interact with Replicate.com APIs and create predictions from the available machine learning models.
repository: https://github.com/anasfik/replicate

Expand Down
2 changes: 1 addition & 1 deletion test/replicate_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ void main() {
});

test('with setting a key', () {
Replicate.apiKey = '95b1d7bdebd1ac18e2552875cdef40529d599301';
Replicate.apiKey = '<YOUR_API_KEY>';
try {
Replicate.instance;
expect(Replicate.instance, isA<Replicate>());
Expand Down

0 comments on commit 6f0c55c

Please sign in to comment.