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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.2

- Move package ownership to the verified `concepta.dev` publisher.
- Update repository and issue links for the `conceptadev` organization.

## 0.1.1

- Remove development-only and copied third-party test artifacts.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ web crawling, and the reference HTML viewer are outside this package.
Apache License 2.0.

[spec]: https://github.com/GoogleCloudPlatform/knowledge-catalog/blob/3fcbb9f828c2f23d109c855ee403c3a4c81f3a96/okf/SPEC.md
[example]: https://github.com/kshdotdev/okf/blob/main/example/okf.dart
[example]: https://github.com/conceptadev/okf/blob/main/example/okf.dart
2 changes: 1 addition & 1 deletion lib/src/cli.dart
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import 'io/bundle_writer.dart';
import 'validator.dart';

/// The package version reported by `okf --version`.
const okfPackageVersion = '0.1.1';
const okfPackageVersion = '0.1.2';

/// A destination for one complete CLI output line.
typedef OkfCliOutput = void Function(String line);
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: okf
description: A format-first Dart toolkit for reading, validating, writing, indexing, and graphing Open Knowledge Format bundles.
version: 0.1.1
repository: https://github.com/kshdotdev/okf
issue_tracker: https://github.com/kshdotdev/okf/issues
version: 0.1.2
repository: https://github.com/conceptadev/okf
issue_tracker: https://github.com/conceptadev/okf/issues
topics:
- okf
- knowledge
Expand Down
2 changes: 1 addition & 1 deletion test/cli_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void main() {

final version = await _run(<String>['--version'], sandbox.path);
expect(version.exitCode, 0);
expect(version.stdout, 'okf 0.1.1');
expect(version.stdout, 'okf 0.1.2');

final pubspec =
loadYaml(await File('pubspec.yaml').readAsString()) as YamlMap;
Expand Down
Loading