Skip to content

Commit b1c8898

Browse files
senierAlexander Senier
authored andcommitted
Prepare v2.0.0
1 parent faeb07c commit b1c8898

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [2.0.0] - 2024-02-05
99

1010
### Added
1111

12-
- Support code coverage and fuzzing at the same time
1312
- Parallel fuzzing (#11)
1413
- Global timeout (#14)
14+
- Support for code coverage and fuzzing at the same time
1515

1616
### Fixed
1717

18+
- Use cryptographic randomness (#16)
1819
- Regression mode
1920
- Prevent tracer from being replaced by secondary tracer
2021

@@ -23,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2324
- Continue after error was found, make number of errors configurable (#12)
2425
- Make crash dir configurable (#13)
2526
- Use mp.get_context for multiprocessing (#1)
27+
- Report only crashes for new paths (#19)
2628
- Use flags instead of file descriptor mask to close stdout and stderr
2729
- Make logging frequency configurable via --stat-frequency
2830

@@ -48,6 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4850
- Rename to cobrafuzz
4951
- Enable GitHub CI
5052

51-
[Unreleased]: https://github.com/senier/cobrafuzz/compare/v1.0.12...HEAD
53+
[2.0.0]: https://github.com/senier/cobrafuzz/compare/v1.0.12...v2.0.0
5254
[1.0.12]: https://github.com/senier/cobrafuzz/compare/v1.0.11...v1.0.12
5355
[1.0.11]: https://github.com/senier/cobrafuzz/compare/1.0.10...v1.0.11

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'setuptools.build_meta'
44

55
[project]
66
name = "cobrafuzz"
7-
version = "1.0.13"
7+
version = "2.0.0"
88
authors = [
99
{name = "Alexander Senier", email = "mail@senier.net"}
1010
]
@@ -16,7 +16,7 @@ classifiers = [
1616
"Operating System :: OS Independent",
1717
"Topic :: Software Development :: Testing",
1818
]
19-
requires-python = '>=3.5.3'
19+
requires-python = '>=3.9.0'
2020

2121
[project.optional-dependencies]
2222
devel = [

0 commit comments

Comments
 (0)