Skip to content

Commit

Permalink
Merge pull request #1 from napalmpapalam/feature/rlx-required-interface
Browse files Browse the repository at this point in the history
Implement required interface for the rlx
  • Loading branch information
napalmpapalam authored May 18, 2024
2 parents dbef9f7 + 82ae925 commit a53febc
Show file tree
Hide file tree
Showing 11 changed files with 666 additions and 56 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,22 @@
name: Build and Lint
on: [push, pull_request]
on: [push]

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

# Make sure CI fails on all warnings, including Clippy lints
env:
RUSTFLAGS: "-D warnings"
CARGO_TERM_COLOR: always

jobs:
clippy_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,26 @@ on:
tags:
- '*.*.*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
CI: 1
RUST_BACKTRACE: short
RUSTFLAGS: -D warnings
RUSTUP_MAX_RETRIES: 10
CARGO_TERM_COLOR: always

jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Rustfmt
run: cargo fmt -- --check
- name: Clippy
run: cargo clippy --all-targets --all-features
- name: Build
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,2 @@
/target
/.vscode

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.1] - 2024-05-18
### Fixed
- Parsing anchor links in the middle of the file
- Error readability

## [0.1.0] - 2024-04-28
- Initial release

[Unreleased]: https://github.com/napalmpapalam/keep-a-changelog/compare/0.1.0...HEAD
[0.1.0]: https://github.com/napalmpapalam/keep-a-changelog/releases/tag/0.1.0

[Unreleased]: https://github.com/napalmpapalam/keep-a-changelog-rs/compare/0.1.1...HEAD
[0.1.1]: https://github.com/napalmpapalam/keep-a-changelog-rs/compare/0.1.0...0.1.1
[0.1.0]: https://github.com/napalmpapalam/keep-a-changelog-rs/releases/tag/0.1.0
Loading

0 comments on commit a53febc

Please sign in to comment.