Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc(license): replace GNU 3.0 license to MIT and APACHE 2.0 #17

Merged
merged 5 commits into from
Sep 6, 2024
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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ jobs:
shell: bash
run: |
mkdir -p release/
cp {LICENSE,README.md,CHANGELOG.md} release/
cp {LICENSE-MIT,LICENSE-APACHE,README.md,CHANGELOG.md} release/
for bin in 'barkit'; do
if [ "${{ matrix.build.OS }}" = "windows-2022" ]; then
bin="${bin}.exe"
Expand Down Expand Up @@ -231,4 +231,4 @@ jobs:
- name: Publish the barkit binary
run: |
cargo publish --manifest-path Cargo.toml \
--locked --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
--locked --token ${{ secrets.CARGO_REGISTRY_TOKEN }}
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.1" # managed by release.sh
edition = "2021"
authors = ["Nikita Syzrantsev [email protected]"]
description = "BarKit — a cross-platform and ultrafast toolkit for barcodes manipulation in FASTQ files"
license = "GPL-3.0"
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/nsyzrantsev/barkit"
repository = "https://github.com/nsyzrantsev/barkit"
Expand Down Expand Up @@ -41,4 +41,4 @@ codegen-units = 1

[profile.bench]
opt-level = 3
debug = false
debug = false
Loading
Loading