Skip to content

Commit 818e1a2

Browse files
authored
Merge pull request #37 from swup/version/automated
Update package version (automated)
2 parents e65f541 + 51d5c50 commit 818e1a2

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [3.2.0] - 2024-04-04
4+
5+
- Make the progress bar more adjustable
6+
37
## [3.1.2] - 2023-09-28
48

59
- Use `@swup/cli` for bundling
@@ -37,8 +41,7 @@
3741

3842
- Initial release
3943

40-
[Unreleased]: https://github.com/swup/progress-plugin/compare/3.1.1...HEAD
41-
44+
[3.2.0]: https://github.com/swup/progress-plugin/releases/tag/3.2.0
4245
[3.1.2]: https://github.com/swup/progress-plugin/releases/tag/3.1.2
4346
[3.1.1]: https://github.com/swup/progress-plugin/releases/tag/3.1.1
4447
[3.1.0]: https://github.com/swup/progress-plugin/releases/tag/3.1.0

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@swup/progress-plugin",
33
"amdName": "SwupProgressPlugin",
4-
"version": "3.1.2",
4+
"version": "3.2.0",
55
"description": "A swup plugin for displaying a progress bar",
66
"type": "module",
77
"source": "src/index.ts",

src/ProgressBar.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export default class ProgressBar {
137137

138138
private refresh(): void {
139139
requestAnimationFrame(() => {
140-
this.progressElement.style.setProperty("--progress", String(this.value));
140+
this.progressElement.style.setProperty('--progress', String(this.value));
141141
});
142142
}
143143

0 commit comments

Comments
 (0)