41 releases (16 breaking)

0.18.1 Sep 15, 2024
0.17.0 Aug 4, 2024
0.16.2 Apr 14, 2024
0.16.1 Mar 24, 2024
0.2.0 Mar 26, 2022

#583 in Development tools

Download history 21/week @ 2024-08-22 8/week @ 2024-08-29 8/week @ 2024-09-05 265/week @ 2024-09-12 112/week @ 2024-09-19 34/week @ 2024-09-26 21/week @ 2024-10-03 19/week @ 2024-10-10 21/week @ 2024-10-17 11/week @ 2024-10-24 5/week @ 2024-10-31 10/week @ 2024-11-07 9/week @ 2024-11-14 4/week @ 2024-11-21 64/week @ 2024-11-28 226/week @ 2024-12-05

305 downloads per month

MIT license

310KB
8K SLoC

Knope

Discord

A command line tool that happily completes the tasks which most developers find tedious.

Example: Automating GitHub Actions Release

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.

Dependencies

~35–48MB
~863K SLoC