Crates.io | knope |
lib.rs | knope |
version | |
source | src |
created_at | 2022-03-26 02:44:24.340497 |
updated_at | 2025-01-21 01:48:12.354057 |
description | A command line tool for automating common development tasks |
homepage | https://knope.tech |
repository | https://github.com/knope-dev/knope |
max_upload_size | |
id | 556519 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A command line tool that happily completes the tasks which most developers find tedious.
Got some conventional commits?
feat: A spicy feature
fix: Some sauce
And some changesets?
---
my-package: major
---
#### Big deal
You probably want to read this before upgrading 💜
Do you want to release this by hand? Knope! Here's a GitHub Actions workflow:
name: Drop a new version
on: workflow_dispatch
jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.PAT }}
- uses: knope-dev/action@v1 # Install Knope
with:
version: 0.18.0
- run: knope release
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
You get a GitHub release and a changelog, picking the semantic version based on the combination of conventional commits and changesets.
## 2.0.0
### Breaking Changes
#### Big deal
You probably want to read this before upgrading 💜
### Features
#### A spicy feature
### Fixes
#### Some sauce
Knope can do much more with some customization, read the docs for more info.