Skip to content

Commit 9c4a0d7

Browse files
committed
release v5.1.0
1 parent 7c1e0ef commit 9c4a0d7

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## v5.1.0 (Feb. 13, 2025)
4+
- Minor changes and improvements.
5+
36
## v5.0.0 (Jan. 28, 2025)
47
- Drop support for Node versions prior to v18.
58
- Use named types instead of any.

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
}
9292

9393
const getLibVersion = () => {
94-
return '5.1.0b';
94+
return '5.1.0';
9595
};
9696
function diff(original, current) {
9797
const { addedAndChanged, deletedAndChanged } = _getPaths(original, current);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "o2diff",
3-
"version": "5.0.0",
3+
"version": "5.1.0",
44
"description": "Returns the difference between two objects",
55
"main": "dist/index.js",
66
"browser": "dist/index.js",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export type PathsResult = {
2929
}
3030

3131
export const getLibVersion = (): string => {
32-
return '5.1.0b'
32+
return '5.1.0'
3333
}
3434

3535
export function diff(original: Input, current: Input): DiffResult {

0 commit comments

Comments
 (0)