-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchangelog.hbs
72 lines (50 loc) · 2.1 KB
/
changelog.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# About this Release
Initial Release of the Rust rewrite of dlang-prs.
Available Downloads:
- Command Line (CLI Program): `prs-rs-cli`
- C Bindings: `C-Library-*`
- NuGet (C#): [prs_rs.Net.Sys](https://www.nuget.org/packages/prs_rs.Net.Sys)
## Version 1.0.5
This version carries the following improvements:
- Compressor 'Dictionary' will be reused (if possible) when compressing last block.
* Improves performance by ~1.5% on 132KB files.
- Added Support for Custom Memory Allocators (Rust API Only)
* This allows you to split up the short and long lived memory allocations.
* Potentially useful if compressing in real time.
- Fixed regression where long sequences of repeated bytes compressed slower than they should.
* This happened because zero extending bytes (`movzx`) was slower than reading a pure `u32` in x86.
* Improves speed from 200MB to 400MB/s on a file of pure `00`s.
## Complete Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Complete Changes
{{#each releases}}
{{#if href}}
## [{{title}}]({{href}}){{#if tag}} - {{isoDate}}{{/if}}
{{else}}
## {{title}}{{#if tag}} - {{isoDate}}{{/if}}
{{/if}}
{{#if summary}}
{{summary}}
{{/if}}
{{#if merges}}
### Merged
{{#each merges}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}
{{/each}}
{{/if}}
{{#if fixes}}
### Fixed
{{#each fixes}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}}{{#each fixes}} {{#if href}}[`#{{id}}`]({{href}}){{/if}}{{/each}}
{{/each}}
{{/if}}
{{#commit-list commits heading='### Commits'}}
- {{#if breaking}}**Breaking change:** {{/if}}{{subject}} {{#if href}}[`{{shorthash}}`]({{href}}){{/if}}
{{/commit-list}}
{{/each}}
====
{{#unless options.hideCredit}}
Reloaded changelogs are generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog) 😇.
{{/unless}}