Skip to content

Commit 151e770

Browse files
authored
bump version to 0.7.1 (#147)
1 parent c3227e2 commit 151e770

File tree

11 files changed

+45
-10
lines changed

11 files changed

+45
-10
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
with:
112112
node-version: "12.x"
113113
- name: Install dependencies
114-
run: yarn --frozen-lockfile
114+
run: ./s/ci-install
115115
- name: Typescript
116116
run: ./s/tsc
117117

@@ -124,7 +124,7 @@ jobs:
124124
with:
125125
node-version: "12.x"
126126
- name: Install dependencies
127-
run: yarn --frozen-lockfile
127+
run: ./s/ci-install
128128
- name: Lint JS
129129
run: ./s/eslint
130130

@@ -137,6 +137,6 @@ jobs:
137137
with:
138138
node-version: "12.x"
139139
- name: Install dependencies
140-
run: yarn --frozen-lockfile
140+
run: ./s/ci-install
141141
- name: Check Formatting
142142
run: ./s/prettier

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10-
### v0.7.0 - 2021-05-19
10+
## v0.7.1 - 2021-05-30
11+
12+
### Fixed
13+
14+
- incorrect internal schema for "create partition" statements. (#146)
15+
- `upload-to-github` command not obeying top level `--exclude`s. (#142)
16+
17+
### Changed
18+
19+
- allowing adding not null column with default for `adding-not-null-field`. (#144)
20+
21+
## v0.7.0 - 2021-05-19
1122

1223
### Added
1324

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,12 @@ cargo run
159159

160160
1. update the CHANGELOG.md and bump version in all the dependency
161161
`Cargo.toml` as well as the CLI `Cargo.toml` and commit the changes
162+
163+
```bash
164+
# update version in Cargo.toml files and package.json to 4.5.3
165+
s/update-version 4.5.3
166+
```
167+
162168
2. create a new release on github - CI will attach the binaries automatically
163169
3. bump version in `package.json` and follow the `npm` steps
164170

cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk",
3-
"version": "0.0.0",
3+
"version": "0.7.1",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",

github/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-github"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

linter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-linter"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "git@github.com:sbdchd/squawk.git",
66
"author": "Steve Dignam <steve@dignam.xyz>",

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk-parser"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Steve Dignam <steve@dignam.xyz>"]
55
edition = "2018"
66
license = "GPL-3.0"

s/ci-install

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
exec yarn --frozen-lockfile --ignore-scripts

0 commit comments

Comments
 (0)