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
4 changes: 2 additions & 2 deletions .github/workflows/build-macos-arm64.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Apple macOS ARM64
# Apple macOS arm64

name: macOS ARM64
name: macOS arm64

on:
push:
Expand Down
11 changes: 11 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kivi"
version = "1.2.1"
version = "1.2.2"
authors = ["Dariusz Depta <[email protected]>"]
description = "Key-value pair with key and value in separate lines"
documentation = "https://docs.rs/kivi"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# 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]
![build MacOs arm64][build-badge-macos-arm64]
[![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
Expand All @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading