Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# Test with at least the declared minimum Dart version
sdk: ['3.0', stable]
sdk: ['3.1', stable]
steps:
- uses: actions/checkout@v4
- uses: dart-lang/setup-dart@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 9.25.0-wip

* Require Dart 3.1
* Require `package:http` `^1.0.0`.

## 9.24.0

* Bug fixes to the `Issue.isOpen` and `Issue.isClosed` getters.
Expand Down
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ linter:
- omit_local_variable_types
- one_member_abstracts
- only_throw_errors
- package_api_docs
- prefer_asserts_in_initializer_lists
- prefer_const_constructors
- prefer_const_constructors_in_immutables
Expand Down
26 changes: 13 additions & 13 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: github
version: 9.24.0
version: 9.25.0-wip
description: A high-level GitHub API Client Library that uses Github's v3 API
homepage: https://github.com/SpinlockLabs/github.dart

environment:
sdk: ^3.0.0
sdk: ^3.1.0

dependencies:
http: '>=0.13.0 <2.0.0'
http: ^1.0.0
http_parser: ^4.0.0
json_annotation: ^4.8.0
meta: ^1.3.0
meta: ^1.7.0

dev_dependencies:
build_runner: any
build_test: any
build_web_compilers: any
build_runner: ^2.2.1
build_test: ^2.1.2
build_web_compilers: ^3.2.6
collection: ^1.15.0
dependency_validator:
dependency_validator: ^3.0.0
json_serializable: ^6.6.1
lints: ^3.0.0
mockito: ^5.0.0
nock: ^1.0.0
lints: ^4.0.0
mockito: ^5.3.2
nock: ^1.1.3
pub_semver: ^2.0.0
test: ^1.16.0
yaml: ^3.0.0
test: ^1.21.6
yaml: ^3.1.0
yaml_edit: ^2.2.0
1 change: 1 addition & 0 deletions test/scenarios_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

@Tags(['scenarios'])
@TestOn('vm')
library;

import 'dart:convert';

Expand Down
Loading