diff --git a/CHANGELOG.md b/CHANGELOG.md index 314b704f..0e32a5b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [v1.73.3](https://github.com/k1LoW/tbls/compare/v1.73.2...v1.73.3) - 2024-03-13 +### Other Changes +- Fix some minor typos in README by @mmizutani in https://github.com/k1LoW/tbls/pull/563 +- Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by @dependabot in https://github.com/k1LoW/tbls/pull/565 + +## [v1.73.2](https://github.com/k1LoW/tbls/compare/v1.72.2...v1.73.2) - 2024-01-25 +### Other Changes +- Fix CD pipeline by @k1LoW in https://github.com/k1LoW/tbls/pull/554 +- Update pkgs by @k1LoW in https://github.com/k1LoW/tbls/pull/556 + ## [v1.72.2](https://github.com/k1LoW/tbls/compare/v1.72.1...v1.72.2) - 2024-01-25 ### Other Changes - Update go-graphviz to v0.1.2 by @k1LoW in https://github.com/k1LoW/tbls/pull/552 diff --git a/README.md b/README.md index 68d17b87..487de360 100644 --- a/README.md +++ b/README.md @@ -338,7 +338,7 @@ script: - tbls lint ``` -> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp` +> **Tips:** If your CI based on Debian/Ubuntu (`/bin/sh -> dash`), you can use the following install command `curl -sL https://raw.githubusercontent.com/k1LoW/tbls/main/use > use-tbls.tmp && . ./use-tbls.tmp && rm ./use-tbls.tmp` > **Tips:** If the order of the columns does not match, you can use the `--sort` option. @@ -411,7 +411,7 @@ dsn: my://dbuser:dbpass@hostname:3306/dbname #### Support Datasource -tbls support following databases/datasources. +tbls supports the following databases/datasources. **PostgreSQL:** @@ -814,10 +814,10 @@ lint: enabled: true exclude: - schema_migrations - # checks if tables are included in at leaset one viewpoint + # checks if tables are included in at least one viewpoint requireViewpoints: enabled: true - exclued: + exclude: - schema_migrations ``` @@ -1062,7 +1062,7 @@ You can also define groups of tables within viewpoints. viewpoints: - name: comments on post - desc: Users can comment on each post multiple times and put a star on each comments. + desc: Users can comment on each post multiple times and put a star on each comment. tables: - users - posts diff --git a/go.mod b/go.mod index ce1973f9..84680a67 100644 --- a/go.mod +++ b/go.mod @@ -155,6 +155,6 @@ require ( google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 // indirect google.golang.org/grpc v1.61.0 // indirect - google.golang.org/protobuf v1.32.0 // indirect + google.golang.org/protobuf v1.33.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) diff --git a/go.sum b/go.sum index 1eb1f957..6ae924cf 100644 --- a/go.sum +++ b/go.sum @@ -523,8 +523,8 @@ google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpAD google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c= google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw= google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc= -google.golang.org/protobuf v1.32.0 h1:pPC6BG5ex8PDFnkbrGU3EixyhKcQ2aDuBS36lqK/C7I= -google.golang.org/protobuf v1.32.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI= +google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20200902074654-038fdea0a05b/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk= diff --git a/version/version.go b/version/version.go index 0dfc93a4..d94e0299 100644 --- a/version/version.go +++ b/version/version.go @@ -4,4 +4,4 @@ package version const Name string = "tbls" // Version for this -var Version = "1.73.2" +var Version = "1.73.3"