Skip to content

Commit

Permalink
fix gha?
Browse files Browse the repository at this point in the history
  • Loading branch information
AngheloAlf committed Aug 9, 2024
1 parent 7535258 commit 084fb0a
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_crate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: cargo fmt --check

check_clippy:
name: Check clippy: no features
name: Check clippy - no features
runs-on: ubuntu-latest

steps:
Expand All @@ -42,7 +42,7 @@ jobs:
run: cargo clippy --all-targets -- -D warnings

check_clippy_serde:
name: Check clippy: features: serde
name: Check clippy - features - serde
runs-on: ubuntu-latest

steps:
Expand All @@ -62,7 +62,7 @@ jobs:
run: cargo clippy --all-targets --features serde -- -D warnings

check_clippy_all_features:
name: Check clippy: features: all
name: Check clippy - features- all
runs-on: ubuntu-latest

steps:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.5.1] - 2024-08-09

### Fixed

- Fix Github Action file.

## [2.5.0] - 2024-08-09

### Added
Expand Down Expand Up @@ -366,6 +372,7 @@ Full changes: <https://github.com/Decompollaborate/mapfile_parser/compare/702a73
- Initial release

[unreleased]: https://github.com/Decompollaborate/mapfile_parser/compare/master...develop
[2.5.1]: https://github.com/Decompollaborate/mapfile_parser/compare/2.5.0...2.5.1
[2.5.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.4.0...2.5.0
[2.4.0]: https://github.com/Decompollaborate/mapfile_parser/compare/2.3.7...2.4.0
[2.3.7]: https://github.com/Decompollaborate/mapfile_parser/compare/2.3.6...2.3.7
Expand Down
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
Expand Up @@ -3,7 +3,7 @@

[package]
name = "mapfile_parser"
version = "2.5.0"
version = "2.5.1"
edition = "2021"
rust-version = "1.65.0"
authors = ["Anghelo Carvajal <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you use a `requirements.txt` file in your repository, then you can add
this library with the following line:

```txt
mapfile_parser>=2.5.0,<3.0.0
mapfile_parser>=2.5.1,<3.0.0
```

#### Development version
Expand Down Expand Up @@ -74,7 +74,7 @@ cargo add mapfile_parser
Or add the following line manually to your `Cargo.toml` file:

```toml
mapfile_parser = "2.5.0"
mapfile_parser = "2.5.1"
```

## Versioning and changelog
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

[project]
name = "mapfile_parser"
version = "2.5.0"
version = "2.5.1"
description = "Map file parser library focusing decompilation projects"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/mapfile_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from __future__ import annotations

__version_info__ = (2, 5, 0)
__version_info__ = (2, 5, 1)
__version__ = ".".join(map(str, __version_info__))# + "-dev0"
__author__ = "Decompollaborate"

Expand Down

0 comments on commit 084fb0a

Please sign in to comment.