Skip to content

Commit bfa730f

Browse files
committed
chore: reset version to 0.0.0 so release-please can cut v1.0.0
Release-As: 1.0.0
1 parent 56a392c commit bfa730f

8 files changed

Lines changed: 12 additions & 10 deletions

File tree

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ lib/
33
node_modules/
44
coverage/
55
package-lock.json
6+
7+
CHANGELOG.md

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0"
2+
".": "0.0.0"
33
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Camo Buster
1+
# camo-buster
22

33
[![CI](https://github.com/twangodev/camo-buster/actions/workflows/main.yml/badge.svg)](https://github.com/twangodev/camo-buster/actions/workflows/main.yml)
4-
[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-Camo%20Buster-blue?logo=github)](https://github.com/marketplace/actions/camo-buster)
4+
[![GitHub Marketplace](https://img.shields.io/badge/Marketplace-camo--buster-blue?logo=github)](https://github.com/marketplace/actions/camo-buster)
55
[![Release](https://img.shields.io/github/v/release/twangodev/camo-buster?display_name=tag&sort=semver)](https://github.com/twangodev/camo-buster/releases)
66
[![License](https://img.shields.io/github/license/twangodev/camo-buster)](./LICENSE)
77

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Camo Buster'
1+
name: 'camo-buster'
22
description: 'Bust GitHub camo image caches so README and markdown image updates show instantly.'
33
author: 'James Ding'
44
branding:

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63671,7 +63671,7 @@ async function run() {
6367163671
if (urls.length === 0) {
6367263672
core.info('No camo URLs found — nothing to purge.');
6367363673
await core.summary
63674-
.addHeading('Camo Buster', 2)
63674+
.addHeading('camo-buster', 2)
6367563675
.addRaw('No camo URLs found. Nothing to purge.', true)
6367663676
.write();
6367763677
core.setOutput('purged-count', 0);
@@ -63696,7 +63696,7 @@ async function run() {
6369663696
const headline = `Purged ${successes.length}/${urls.length} camo URL(s)${failures.length ? ` (${failures.length} failed)` : ''} in ${elapsedMs} ms`;
6369763697
core.info(headline);
6369863698
await core.summary
63699-
.addHeading('Camo Buster', 2)
63699+
.addHeading('camo-buster', 2)
6370063700
.addRaw(`Purged **${successes.length}** of **${urls.length}** camo URL(s)${failures.length ? ` — **${failures.length} failed**` : ''} in **${elapsedMs} ms**.`, true)
6370163701
.addTable([
6370263702
[

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "camo-buster",
3-
"version": "1.0.0",
3+
"version": "0.0.0",
44
"private": true,
55
"license": "MIT",
66
"author": "James Ding",

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async function run(): Promise<void> {
9191
if (urls.length === 0) {
9292
core.info('No camo URLs found — nothing to purge.');
9393
await core.summary
94-
.addHeading('Camo Buster', 2)
94+
.addHeading('camo-buster', 2)
9595
.addRaw('No camo URLs found. Nothing to purge.', true)
9696
.write();
9797
core.setOutput('purged-count', 0);
@@ -121,7 +121,7 @@ async function run(): Promise<void> {
121121
core.info(headline);
122122

123123
await core.summary
124-
.addHeading('Camo Buster', 2)
124+
.addHeading('camo-buster', 2)
125125
.addRaw(
126126
`Purged **${successes.length}** of **${urls.length}** camo URL(s)${
127127
failures.length ? ` — **${failures.length} failed**` : ''

0 commit comments

Comments
 (0)