diff --git a/.github/workflows/build-macos-arm64.yml b/.github/workflows/build-macos-arm64.yml index ea1b818..a3dc2f4 100644 --- a/.github/workflows/build-macos-arm64.yml +++ b/.github/workflows/build-macos-arm64.yml @@ -1,6 +1,6 @@ -# Apple macOS ARM64 +# Apple macOS arm64 -name: macOS ARM64 +name: macOS arm64 on: push: diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..634a930 --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,11 @@ +cff-version: 1.2.0 +message: If you use this software, please cite it using these metadata. +title: Key-value pair with key and value in separate lines +authors: + - family-names: Depta + given-names: Dariusz + orcid: https://orcid.org/0009-0009-0117-6589 +version: 1.2.2 +date-released: 2024-11-21 +license: Apache-2.0, MIT +url: https://github.com/EngosSoftware/kivi.git diff --git a/Cargo.lock b/Cargo.lock index 694601a..77a3b97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 4 [[package]] name = "kivi" -version = "1.2.1" +version = "1.2.2" dependencies = [ "normalized-line-endings", ] diff --git a/Cargo.toml b/Cargo.toml index acb66a7..86e4939 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kivi" -version = "1.2.1" +version = "1.2.2" authors = ["Dariusz Depta "] description = "Key-value pair with key and value in separate lines" documentation = "https://docs.rs/kivi" diff --git a/LICENSE-MIT b/LICENSE-MIT index 0812eca..412f341 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2015-2025 Dariusz Depta +Copyright (c) 2015-present Dariusz Depta Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/NOTICE b/NOTICE index 593e8bb..e39db44 100644 --- a/NOTICE +++ b/NOTICE @@ -1,4 +1,4 @@ -Copyright (c) 2015-2025 Dariusz Depta +Copyright (c) 2015-present Dariusz Depta Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index dd9927b..8c96517 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # kivi [![Crates.io][crates-badge]][crates-url] -![Code coverage][coverage-badge] +[![Code coverage][cov-badge-kivi]][cov-url] ![build Linux][build-badge-linux] ![build Windows][build-badge-windows] ![build MacOs][build-badge-macos] @@ -9,7 +9,7 @@ [![MIT licensed][mit-badge]][mit-license-url] [![Apache 2.0 licensed][apache-badge]][apache-license-url] [![Contributor Covenant][cc-badge]][cc-url] -[![Made by Human][mbh-badge]][cc-url] +[![Made by Human][made-by-human-badge]][made-by-human-url] [crates-badge]: https://img.shields.io/crates/v/kivi.svg [crates-url]: https://crates.io/crates/kivi @@ -24,10 +24,12 @@ [build-badge-windows]: https://github.com/EngosSoftware/kivi/actions/workflows/build-windows.yml/badge.svg [build-badge-macos]: https://github.com/EngosSoftware/kivi/actions/workflows/build-macos.yml/badge.svg [build-badge-macos-arm64]: https://github.com/EngosSoftware/kivi/actions/workflows/build-macos-arm64.yml/badge.svg -[coverage-badge]: https://img.shields.io/badge/coverage-100%25%20%E2%94%82%20100%25%20%E2%94%82%20100%25-21b577.svg -[cc-badge]: https://img.shields.io/badge/Contributor%20Covenant-2.1-4baaaa.svg +[cov-url]: https://crates.io/crates/coverio +[cov-badge-kivi]: https://img.shields.io/badge/cov-100%25-21b577.svg +[cc-badge]: https://img.shields.io/badge/Contributor%20Covenant-2.1-blue.svg [cc-url]: https://github.com/EngosSoftware/kivi/blob/main/CODE_OF_CONDUCT.md -[mbh-badge]: https://img.shields.io/badge/Made_by-HUMAN-d35400.svg +[made-by-human-badge]: https://img.shields.io/badge/Made_by-HUMAN-red.svg +[made-by-human-url]: https://github.com/DariuszDepta [repository-url]: https://github.com/EngosSoftware/kivi **Key-value pair with key and value in separate lines** diff --git a/Taskfile.yml b/Taskfile.yml index d23ab97..3c0247e 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -35,7 +35,7 @@ tasks: desc: Generates the detailed code coverage badge cmds: - cmd: cargo +stable llvm-cov clean - - cmd: cargo +stable llvm-cov --no-cfg-coverage --json --summary-only | coverio + - cmd: cargo +stable llvm-cov --no-cfg-coverage --json --summary-only | coverio --collapse --tag cov-badge-kivi doc: desc: Generates documentation