Skip to content

Commit

Permalink
chore: 1.2.16 (#5382)
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Nov 1, 2023
1 parent 96ed257 commit cf50740
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qwik-monorepo",
"version": "1.2.15",
"version": "1.2.16",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
Expand Down
2 changes: 1 addition & 1 deletion packages/create-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "create-qwik",
"description": "Interactive CLI for create Qwik projects and adding features.",
"version": "1.2.15",
"version": "1.2.16",
"author": "Builder.io Team",
"bin": "./create-qwik.cjs",
"bugs": "https://github.com/BuilderIO/qwik/issues",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "eslint-plugin-qwik",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"version": "1.2.15",
"version": "1.2.16",
"author": "Builder Team",
"bugs": "https://github.com/BuilderIO/qwik/issues",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik-city/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik-city",
"description": "The meta-framework for Qwik.",
"version": "1.2.15",
"version": "1.2.16",
"bugs": "https://github.com/BuilderIO/qwik/issues",
"dependencies": {
"@mdx-js/mdx": "2.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/qwik/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@builder.io/qwik",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"version": "1.2.15",
"version": "1.2.16",
"bin": "./dist/qwik.cjs",
"bugs": "https://github.com/BuilderIO/qwik/issues",
"contributors": [
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export async function commitPrepareReleaseVersion(config: BuildConfig) {
await run('git', gitAddArgs);

// git commit the changed package.json
const gitCommitArgs = ['commit', '--message', `"chore: ${config.distVersion}`];
const gitCommitArgs = ['commit', '--message', `chore: ${config.distVersion}`];
await run('git', gitCommitArgs);

console.log(``);
Expand Down

0 comments on commit cf50740

Please sign in to comment.