Skip to content

Commit

Permalink
🔖 Release v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidBakerEffendi committed Feb 7, 2022
1 parent 42c4af7 commit 247a641
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
/build/
/bin/
*.bin
*.gzip

# Ignore Gradle GUI config
gradle-app.setting
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 2022-02-02
## [1.0.5] - 2022-02-07

### Added

- Data-flow paths are saved to a blob and are re-used on future runs. Only available on `OverflowDbDriver`.
- Data-flow paths are saved to a GZIP compressed JSON and are re-used on future runs.
Only available on `OverflowDbDriver`.

### Fixed

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ final case class OverflowDbDriver(
),
heapPercentageThreshold: Int = 80,
serializationStatsEnabled: Boolean = false,
dataFlowCacheFile: Path = Paths.get("dataFlowCache.bin")
dataFlowCacheFile: Path = Paths.get("dataFlowCache.json.gzip")
) extends IDriver {

private val logger = LoggerFactory.getLogger(classOf[OverflowDbDriver])
Expand Down

0 comments on commit 247a641

Please sign in to comment.