Skip to content

Commit c5403d7

Browse files
committed
Bump version to 0.2.0
1 parent ed3a8fe commit c5403d7

File tree

13 files changed

+33
-27
lines changed

13 files changed

+33
-27
lines changed

dist/debian/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ On a Debian-based machine, install dependencies for .deb generation:
1010
$ sudo apt-get install cmake debhelper dpkg-dev gcc-9 g++-9 git lintian
1111

1212
Then, run the `build.sh` script will build
13-
`dist/debian/quick-lint-js_0.1.0-1_amd64.deb`,
14-
`dist/debian/quick-lint-js-vim_0.1.0-1_all.deb`, and related files.
13+
`dist/debian/quick-lint-js_0.2.0-1_amd64.deb`,
14+
`dist/debian/quick-lint-js-vim_0.2.0-1_all.deb`, and related files.
1515

1616
## Installing
1717

1818
On a Debian-based system, after building the .deb file (per the above
1919
instructions), install the .deb file:
2020

21-
$ sudo dpkg -i dist/debian/quick-lint-js_0.1.0-1_amd64.deb
22-
$ sudo dpkg -i dist/debian/quick-lint-js-vim_0.1.0-1_all.deb
21+
$ sudo dpkg -i dist/debian/quick-lint-js_0.2.0-1_amd64.deb
22+
$ sudo dpkg -i dist/debian/quick-lint-js-vim_0.2.0-1_all.deb

dist/debian/build.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ cd "$(dirname "${0}")/../.."
1212
DEB_BUILD_OPTIONS="parallel=$(nproc)"
1313
export DEB_BUILD_OPTIONS
1414

15-
git archive --format tar.gz --prefix quick-lint-js-0.1.0/ --output dist/debian/quick-lint-js_0.1.0.orig.tar.gz HEAD
15+
git archive --format tar.gz --prefix quick-lint-js-0.2.0/ --output dist/debian/quick-lint-js_0.2.0.orig.tar.gz HEAD
1616

1717
cd dist/debian/
18-
rm -rf quick-lint-js-0.1.0/
19-
tar xzf quick-lint-js_0.1.0.orig.tar.gz
20-
cp -a debian quick-lint-js-0.1.0/debian
18+
rm -rf quick-lint-js-0.2.0/
19+
tar xzf quick-lint-js_0.2.0.orig.tar.gz
20+
cp -a debian quick-lint-js-0.2.0/debian
2121

22-
cd quick-lint-js-0.1.0/
22+
cd quick-lint-js-0.2.0/
2323
dpkg-buildpackage -rfakeroot -uc -us
2424

2525
cd ../
26-
lintian quick-lint-js_0.1.0-1_amd64.deb
27-
lintian quick-lint-js-dbgsym_0.1.0-1_amd64.deb
28-
lintian quick-lint-js-vim_0.1.0-1_all.deb
26+
lintian quick-lint-js_0.2.0-1_amd64.deb
27+
lintian quick-lint-js-dbgsym_0.2.0-1_amd64.deb
28+
lintian quick-lint-js-vim_0.2.0-1_all.deb
2929

3030
# quick-lint-js finds bugs in JavaScript programs.
3131
# Copyright (C) 2020 Matthew Glazar

dist/debian/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
quick-lint-js (0.2.0-1) unstable; urgency=medium
2+
3+
* New beta release.
4+
5+
-- Matthew "strager" Glazar <[email protected]> Mon, 05 Apr 2021 19:28:08 -0700
6+
17
quick-lint-js (0.1.0-1) unstable; urgency=medium
28

39
* Initial release.

dist/nix/quick-lint-js.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
mkDerivation {
1515
pname = "quick-lint-js";
16-
version = "0.1.0";
16+
version = "0.2.0";
1717

1818
src = ../../.;
1919
unpackPhase = null;

dist/npm/BUILDING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ To build this quick-lint-js npm package:
88
* `dist/npm/linux/bin/quick-lint-js`: Linux executable
99
* `dist/npm/macos/bin/quick-lint-js`: macOS executable
1010
* `dist/npm/windows/bin/quick-lint-js.exe`: Windows executable
11-
3. Run `npm pack .` to create `quick-lint-js-0.1.1-a.tgz`.
11+
3. Run `npm pack .` to create `quick-lint-js-0.2.0.tgz`.
1212

1313
To install system-wide, run
14-
`npm install --global --unsafe-perm ./quick-lint-js-0.1.1-a.tgz`.
14+
`npm install --global --unsafe-perm ./quick-lint-js-0.2.0.tgz`.
1515

1616
To install within an existing Node.js project, run
17-
`npm install /path/to/quick-lint-js-0.1.1-a.tgz`.
17+
`npm install /path/to/quick-lint-js-0.2.0.tgz`.
1818

19-
To publish to npm's registry, run `npm publish ./quick-lint-js-0.1.1-a.tgz`.
19+
To publish to npm's registry, run `npm publish ./quick-lint-js-0.2.0.tgz`.

dist/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "quick-lint-js",
33
"description": "Find bugs in your JavaScript code",
4-
"version": "0.1.1-b",
4+
"version": "0.2.0",
55
"keywords": [
66
"quick",
77
"lint",

docs/quick-lint-js.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.\" Manual page for the 'man' utility.
55
.
66
.
7-
.TH QUICK\-LINT\-JS 1 "" "quick\-lint\-js version 0.1.0"
7+
.TH QUICK\-LINT\-JS 1 "" "quick\-lint\-js version 0.2.0"
88
.
99
.
1010
.\" BEGIN_AN_EXT_TMAC -----------------------------------------------------------

plugin/vscode-lsp/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ To build the extension, run the following commands:
1010
$ yarn
1111
$ npx vsce package
1212

13-
This will create a file called `quick-lint-js-lsp-0.1.0.vsix`.
13+
This will create a file called `quick-lint-js-lsp-0.2.0.vsix`.
1414

1515
[VisualStudioCode]: https://code.visualstudio.com/

plugin/vscode-lsp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "quick-lint-js-lsp",
33
"description": "Find JavaScript bugs with quick-lint-js (LSP version, not recommended)",
44
"publisher": "quick-lint",
5-
"version": "0.1.0",
5+
"version": "0.2.0",
66
"engines": {
77
"vscode": "^1.43.0"
88
},

plugin/vscode/BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ and [Node.js][], then run the following commands:
1313
$ emmake ninja -C build-emscripten quick-lint-js-vscode quick-lint-js-vscode-licenses
1414
$ emmake cmake --install build-emscripten --component vscode --prefix .
1515

16-
Then, run the following command to create `quick-lint-js-0.1.0.vsix`:
16+
Then, run the following command to create `quick-lint-js-0.2.0.vsix`:
1717

1818
$ npx vsce package --baseImagesUrl https://raw.githubusercontent.com/quick-lint/quick-lint-js/master/plugin/vscode/
1919

0 commit comments

Comments
 (0)