Skip to content

Commit 0a4a8b4

Browse files
committed
Prepare for 0.3.0 release
1 parent 1d1a9fe commit 0a4a8b4

File tree

24 files changed

+58
-75
lines changed

24 files changed

+58
-75
lines changed

.github/workflows/tag-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
container: ghcr.io/quick-lint/quick-lint-js-github-builder:v1
1212
env:
13-
QLJS_VERSION: "0.2.0"
13+
QLJS_VERSION: "0.3.0"
1414
steps:
1515
- name: create tag file
1616
run: |

Formula/quick-lint-js.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
class QuickLintJs < Formula
55
desc "Find bugs in your JavaScript code"
66
homepage "https://quick-lint-js.com/"
7-
url "https://github.com/quick-lint/quick-lint-js/archive/refs/tags/0.2.0.tar.gz"
7+
url "https://github.com/quick-lint/quick-lint-js/archive/refs/tags/0.3.0.tar.gz"
88
head "https://github.com/quick-lint/quick-lint-js.git", :branch => "master"
99
license "GPL-3.0-or-later"
1010

dist/arch/PKGBUILD-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Contributor: Shivam Mehta <sm.cse at gmail dot com>
66

77
pkgname=quick-lint-js-dev
8-
pkgver=0.2.0
8+
pkgver=0.3.0
99
pkgrel=1
1010
pkgdesc="Find bugs in JavaScript programs"
1111
arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64)

dist/arch/PKGBUILD-git

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Contributor: Shivam Mehta <sm.cse at gmail dot com>
66

77
pkgname=quick-lint-js-git
8-
pkgver=0.2.0
8+
pkgver=0.3.0
99
pkgrel=1
1010
pkgdesc="Find bugs in JavaScript programs"
1111
arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64)

dist/arch/PKGBUILD-release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Contributor: Shivam Mehta <sm.cse at gmail dot com>
66

77
pkgname=quick-lint-js
8-
pkgver=0.2.0
8+
pkgver=0.3.0
99
pkgrel=1
1010
pkgdesc="Find bugs in JavaScript programs"
1111
arch=(aarch64 arm armv6h armv7h i686 pentium4 x86_64)

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.2.0-1_amd64.deb`,
14-
`dist/debian/quick-lint-js-vim_0.2.0-1_all.deb`, and related files.
13+
`dist/debian/quick-lint-js_0.3.0-1_amd64.deb`,
14+
`dist/debian/quick-lint-js-vim_0.3.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.2.0-1_amd64.deb
22-
$ sudo dpkg -i dist/debian/quick-lint-js-vim_0.2.0-1_all.deb
21+
$ sudo dpkg -i dist/debian/quick-lint-js_0.3.0-1_amd64.deb
22+
$ sudo dpkg -i dist/debian/quick-lint-js-vim_0.3.0-1_all.deb

dist/debian/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -x
99

1010
cd "$(dirname "${0}")/../.."
1111

12-
package_version=0.2.0
12+
package_version=0.3.0
1313

1414
DEB_BUILD_OPTIONS="parallel=$(nproc)"
1515
export DEB_BUILD_OPTIONS

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.3.0-1) unstable; urgency=medium
2+
3+
* New beta release.
4+
5+
-- Matthew "strager" Glazar <strager.nds@gmail.com> Fri, 02 Jul 2021 19:20:46 PM -0700
6+
17
quick-lint-js (0.2.0-1) unstable; urgency=medium
28

39
* New beta 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.2.0";
16+
version = "0.3.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.2.0.tgz`.
11+
3. Run `npm pack .` to create `quick-lint-js-0.3.0.tgz`.
1212

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

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

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

0 commit comments

Comments
 (0)