dbmate 2.19.0 → 2.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -609,7 +609,7 @@ _If you notice any inaccuracies in this table, please [propose a change](https:/
609
609
 
610
610
  Dbmate is written in Go, pull requests are welcome.
611
611
 
612
- Tests are run against a real database using docker-compose. To build a docker image and run the tests:
612
+ Tests are run against a real database using docker compose. To build a docker image and run the tests:
613
613
 
614
614
  ```sh
615
615
  $ make docker-all
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbmate",
3
- "version": "2.19.0",
3
+ "version": "2.20.0",
4
4
  "description": "A lightweight, framework-agnostic database migration tool",
5
5
  "repository": "https://github.com/amacneil/dbmate",
6
6
  "homepage": "https://github.com/amacneil/dbmate#readme",
@@ -24,12 +24,12 @@
24
24
  "build": "tsc --build"
25
25
  },
26
26
  "optionalDependencies": {
27
- "@dbmate/linux-ia32": "2.19.0",
28
- "@dbmate/linux-x64": "2.19.0",
29
- "@dbmate/linux-arm": "2.19.0",
30
- "@dbmate/linux-arm64": "2.19.0",
31
- "@dbmate/darwin-x64": "2.19.0",
32
- "@dbmate/darwin-arm64": "2.19.0",
33
- "@dbmate/win32-x64": "2.19.0"
27
+ "@dbmate/linux-ia32": "2.20.0",
28
+ "@dbmate/linux-x64": "2.20.0",
29
+ "@dbmate/linux-arm": "2.20.0",
30
+ "@dbmate/linux-arm64": "2.20.0",
31
+ "@dbmate/darwin-x64": "2.20.0",
32
+ "@dbmate/darwin-arm64": "2.20.0",
33
+ "@dbmate/win32-x64": "2.20.0"
34
34
  }
35
35
  }