Skip to content

Commit 01249ed

Browse files
committed
It's 2025 now, time flies!
1 parent 3ca3e97 commit 01249ed

File tree

21 files changed

+37
-28
lines changed

21 files changed

+37
-28
lines changed

CHANGELOG.md

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

7-
## [1.0.2] - 2025-02-27
8-
### Security
9-
- bsdiff: Fix CVE-2014-9862 (https://www.x41-dsec.de/lab/advisories/x41-2020-006-bspatch/)
10-
- bsdiff: Fix compile error because of missing limits.h
7+
## [Unreleased]
8+
### Changed
9+
* Updated license to reflect current year (2025)
1110

11+
## [1.0.2] - 2025-02-27
1212
### Changed
13-
- Update kingpin v2 import path.
13+
* Update kingpin v2 import path.
14+
15+
### Security
16+
* bsdiff: Fix CVE-2014-9862 (https://www.x41-dsec.de/lab/advisories/x41-2020-006-bspatch/)
17+
* bsdiff: Fix compile error because of missing limits.h
1418

1519
## [1.0.1] - 2022-07-11
1620
### Changed
17-
- Code is now properly licensed under 2-clause BSD license. #7
18-
- Updated github.com/dsnet/compress to 0.0.1.
21+
* Code is now properly licensed under 2-clause BSD license. #7
22+
* Updated github.com/dsnet/compress to 0.0.1.
1923

2024
## [1.0.0] - 2018-11-30
2125
### Added
22-
- Add bsdiff diffing and patching functionality.
26+
* Add bsdiff diffing and patching functionality.
2327

28+
[Unreleased]: https://github.com/icedream/go-bsdiff/compare/v1.0.2...HEAD
2429
[1.0.2]: https://github.com/icedream/go-bsdiff/releases/tag/v1.0.2
2530
[1.0.1]: https://github.com/icedream/go-bsdiff/releases/tag/v1.0.1
2631
[1.0.0]: https://github.com/icedream/go-bsdiff/releases/tag/v1.0.0
32+
33+
34+
35+
[_breaking_change_token]: BREAKING

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2017-2022 Carl Kittelberger
1+
Copyright (c) 2017-2025 Carl Kittelberger
22

33
Redistribution and use in source and binary forms, with or without
44
modification, are permitted provided that the following conditions are met:

cmd/go-bsdiff/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

cmd/go-bspatch/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

diff/diff.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

internal/magic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

internal/native/cgo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2022 Carl Kittelberger.
2+
* Copyright (c) 2017-2025 Carl Kittelberger.
33
* Use of this source code is governed by a BSD-style
44
* license that can be found in the LICENSE.txt file.
55
*/

internal/native/cgo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017-2022 Carl Kittelberger.
2+
* Copyright (c) 2017-2025 Carl Kittelberger.
33
* Use of this source code is governed by a BSD-style
44
* license that can be found in the LICENSE file.
55
*/

internal/native/cgo_read.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

internal/native/cgo_write.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017-2022 Carl Kittelberger.
1+
// Copyright (c) 2017-2025 Carl Kittelberger.
22
// Use of this source code is governed by a BSD-style
33
// license that can be found in the LICENSE.txt file.
44

0 commit comments

Comments
 (0)