Skip to content

[32] Add a CHANGELOG file #38

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

Closed
wants to merge 6 commits into from
Closed
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
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Build

on: [push]
on:
pull_request:
push:
branches: ["main", "develop", "release"]

env:
CARGO_TERM_COLOR: always
@@ -20,4 +23,4 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: 📦Check package generation
run: cargo package
run: cargo package
5 changes: 4 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Docs

on: [push]
on:
pull_request:
push:
branches: ["main", "develop", "release"]

env:
CARGO_TERM_COLOR: always
5 changes: 4 additions & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Package

on: [push]
on:
pull_request:
push:
branches: ["main", "develop", "release"]

env:
CARGO_TERM_COLOR: always
5 changes: 4 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Code check

on: [push]
on:
pull_request:
push:
branches: ["main", "develop", "release"]

env:
CARGO_TERM_COLOR: always
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Tests

on: [push]
on:
pull_request:
push:
branches: ["main", "develop", "release"]

env:
CARGO_TERM_COLOR: always
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -8,11 +8,6 @@
debug/
target/

# Cargo.lock should be only added to binary crates

Cargo.lock


# These are backup files generated by rustfmt
**/*.rs.bk

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

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

## [Unreleased]
### Added
- Added changelog
- Added Basic CLI functionality using CLAP
- Added Base Project
Loading