Skip to content

Commit f1ad55c

Browse files
authored
prep for publishing 1.3.1 (dart-archive/typed_data#52)
prep for publishing 1.3.1
1 parent 9f19d7d commit f1ad55c

File tree

3 files changed

+15
-14
lines changed

3 files changed

+15
-14
lines changed

pkgs/typed_data/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
## 1.3.1-dev
1+
## 1.3.1
2+
3+
* Switch to using `package:lints`.
4+
* Populate the pubspec `repository` field.
25

36
## 1.3.0
47

pkgs/typed_data/README.md

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
1-
# Helper libraries for working with typed data lists.
1+
[![Dart CI](https://github.com/dart-lang/typed_data/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/typed_data/actions/workflows/test-package.yml)
2+
[![pub package](https://img.shields.io/pub/v/typed_data.svg)](https://pub.dev/packages/typed_data)
3+
[![package publisher](https://img.shields.io/pub/publisher/typed_data.svg)](https://pub.dev/packages/typed_data/publisher)
4+
5+
Helper libraries for working with typed data lists.
26

37
The `typed_data` package contains utility functions and classes that makes working with typed data lists easier.
48

59
## Using
610

7-
The `typed_data` package can be imported as
11+
The `typed_data` package can be imported using:
812

913
```dart
1014
import 'package:typed_data/typed_data.dart';
1115
```
1216

13-
## Typed buffers: Growable typed data lists
14-
15-
Typed buffers are contains growable lists backed by typed arrays.
16-
These are similar to the growable lists returned by `List()`,
17-
but stores typed data like a typed data list.
18-
19-
## Features and bugs
20-
21-
Please file feature requests and bugs at the [issue tracker][tracker].
17+
## Typed buffers
2218

23-
[tracker]: https://github.com/dart-lang/typed_data/issues
19+
Typed buffers are growable lists backed by typed arrays. These are similar to
20+
the growable lists created by `<int>[]` or `<double>[]`, but store typed data
21+
like a typed data list.

pkgs/typed_data/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: typed_data
2-
version: 1.3.1-dev
2+
version: 1.3.1
33
description: >-
44
Utility functions and classes related to the dart:typed_data library.
55
repository: https://github.com/dart-lang/typed_data

0 commit comments

Comments
 (0)