diff --git a/CHANGELOG.md b/CHANGELOG.md index 759c349..b32e953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 8384d42..91c3b8f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/src/cli.dart b/lib/src/cli.dart index c142212..ffaa1dc 100644 --- a/lib/src/cli.dart +++ b/lib/src/cli.dart @@ -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); diff --git a/pubspec.yaml b/pubspec.yaml index 2bdbe96..fd44cb2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 diff --git a/test/cli_test.dart b/test/cli_test.dart index 11658b3..4342384 100644 --- a/test/cli_test.dart +++ b/test/cli_test.dart @@ -35,7 +35,7 @@ void main() { final version = await _run(['--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;