Skip to content

Commit

Permalink
🔀 Merge branch 'release/4.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Aug 14, 2024
2 parents 9ade016 + 7f4b576 commit db8cd35
Show file tree
Hide file tree
Showing 9 changed files with 5,274 additions and 3,307 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"error",
{ "devDependencies": ["**/*.test.[jt]s", "**/*.config.[jt]s"] }
],
"import/prefer-default-export": "off",
"no-param-reassign": ["error", { "props": false }]
}
}
10 changes: 6 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 22
cache: 'npm'

- name: Install dependencies
Expand All @@ -34,4 +34,6 @@ jobs:
run: npm run test:coverage

- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6 changes: 0 additions & 6 deletions .husky/pre-commit

This file was deleted.

11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [4.0.1] - 2024-08-14

### Changed

- Upgraded dev dependencies

### Fixed

- Issue where package couldn't be installed in some circumstances due to bad metadata present on npm's servers [#256](https://github.com/Pustur/whatsapp-chat-parser/issues/256)

## [4.0.0] - 2023-02-18

### Added
Expand Down Expand Up @@ -291,6 +301,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[4.0.1]: https://github.com/Pustur/whatsapp-chat-parser/compare/4.0.0...4.0.1
[4.0.0]: https://github.com/Pustur/whatsapp-chat-parser/compare/3.2.3...4.0.0
[3.2.3]: https://github.com/Pustur/whatsapp-chat-parser/compare/3.2.2...3.2.3
[3.2.2]: https://github.com/Pustur/whatsapp-chat-parser/compare/3.2.1...3.2.2
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ You can also use the [jsDelivr CDN](https://www.jsdelivr.com/package/npm/whatsap
```html
<script src="https://cdn.jsdelivr.net/npm/whatsapp-chat-parser/dist/index.global.js"></script>
<!-- Or use a specific version -->
<script src="https://cdn.jsdelivr.net/npm/whatsapp-chat-parser@4.0.0/dist/index.global.js"></script>
<script src="https://cdn.jsdelivr.net/npm/whatsapp-chat-parser@4.0.1/dist/index.global.js"></script>
```

## Message structure
Expand Down
Loading

0 comments on commit db8cd35

Please sign in to comment.