Skip to content

Commit

Permalink
Add CHANGELOG and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
theGEBIRGE committed Oct 17, 2024
1 parent 8d959fd commit fd01bdb
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: taiki-e/create-gh-release-action@v1
with:
# (optional) Path to changelog.
# changelog: CHANGELOG.md
changelog: CHANGELOG.md
# (required) GitHub token for creating GitHub Releases.
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

See what's what.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added
### Changed
### Removed
### Security

## [1.1.0] - 2024-10-17

### Added

- Support for ELF files
- Support for PE files

## [1.0.0] - 2024-10-15

### Added

- Support for Macho-O files
- Support for every `Deno compile` iteration
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 = "DenoDig"
version = "1.0.0"
version = "1.1.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ impl Trailer {
#[derive(Parser, Debug)]
#[command(
name = "Deno Dig",
version = "1.0.0",
version = "1.1.0",
author = "Frederic Linn",
about = "A tool for excavating application code and npm packages from stand-alone Deno binaries "
)]
Expand Down

0 comments on commit fd01bdb

Please # to comment.