Skip to content

Commit 88fe06e

Browse files
committed
1.1.17
1 parent dabda03 commit 88fe06e

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
99

10-
## [v1.1.16](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.15...v1.1.16)
10+
## [v1.1.17](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.16...v1.1.17)
11+
12+
### Commits
13+
14+
- Prune example URLs [`dabda03`](https://github.com/bcomnes/deploy-to-neocities/commit/dabda0324f7965b65951d021c1e99bc10d640903)
15+
16+
## [v1.1.16](https://github.com/bcomnes/deploy-to-neocities/compare/v1.1.15...v1.1.16) - 2023-06-26
1117

1218
### Merged
1319

dist/index.js

+10
Original file line numberDiff line numberDiff line change
@@ -6357,6 +6357,11 @@ var require_fixed_size = __commonJS({
63576357
this.btm = 0;
63586358
this.next = null;
63596359
}
6360+
clear() {
6361+
this.top = this.btm = 0;
6362+
this.next = null;
6363+
this.buffer.fill(void 0);
6364+
}
63606365
push(data) {
63616366
if (this.buffer[this.top] !== void 0)
63626367
return false;
@@ -6393,6 +6398,11 @@ var require_fast_fifo = __commonJS({
63936398
this.tail = this.head;
63946399
this.length = 0;
63956400
}
6401+
clear() {
6402+
this.head = this.tail;
6403+
this.head.clear();
6404+
this.length = 0;
6405+
}
63966406
push(val) {
63976407
this.length++;
63986408
if (!this.head.push(val)) {

dist/index.js.map

+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": "deploy-to-neocities",
33
"description": "Github Action to deplpoy a folder to Neocities.org",
4-
"version": "1.1.16",
4+
"version": "1.1.17",
55
"author": "Bret Comnes <[email protected]> (https://bret.io/)",
66
"bugs": {
77
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"

0 commit comments

Comments
 (0)