Skip to content
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

Fix versions in publish workflow and fix CHANGELOG #207

Merged
merged 2 commits into from Feb 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install Dependencies
Expand Down
8 changes: 5 additions & 3 deletions CHANGELOG.md
Expand Up @@ -4,7 +4,7 @@

-

## [1.1.0] Denoise - 2020-09-17
## [1.1.0] Denoise - 2023-02-21

This release focuses on reducing the noise from the system (#143, #144).
For this purpose, it introduces the `rebench-denoise` tool, which will adapt
Expand All @@ -22,15 +22,15 @@ The use of `rebench-denoise` will require root rights.

Other new features include:

- add support for configurating environment variables (#174)
- add support for configuring environment variables (#174)
- add support for recording profiling information (#190)
- add support for printing the execution plan without running it (#171)
- add marker in configuration to make setting important, which overrides
previous settings, giving more flexibility in composing
configuration values (#170)
- add support for filtering experiments by machines (#161)

Thanks to @tobega, @qinsoon, @OctaveLarose, and @raehik for their contributions.
Thanks to @tobega, @qinsoon, @cmccandless, @OctaveLarose, and @raehik for their contributions.

Other notable improvements:

Expand All @@ -44,6 +44,8 @@ Other notable improvements:
- improve documentation (#197, #198)
- use PyTest for unit tests (#192)

**Full Changelog**: https://github.com/smarr/ReBench/compare/v1.0.1...v1.1.0


## [1.0.1] - 2020-06-23

Expand Down