dbmate 2.2.0 → 2.3.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
@@ -521,7 +521,7 @@ Why another database schema migration tool? Dbmate was inspired by many other to
521
521
  | Ability to wait for database to become ready | :white_check_mark: | | | | | | |
522
522
  | Database connection string loaded from environment variables | :white_check_mark: | | | | | | :white_check_mark: |
523
523
  | Automatically load .env file | :white_check_mark: | | | | | | |
524
- | No separate configuration file | :white_check_mark: | | | :white_check_mark: | :white_check_mark: | :white_check_mark: | |
524
+ | No separate configuration file | :white_check_mark: | :white_check_mark: | | :white_check_mark: | :white_check_mark: | :white_check_mark: | |
525
525
  | Language/framework independent | :white_check_mark: | :white_check_mark: | | :white_check_mark: | | | :white_check_mark: | :white_check_mark: |
526
526
  | **Drivers** |
527
527
  | PostgreSQL | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dbmate",
3
- "version": "2.2.0",
3
+ "version": "2.3.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.2.0",
28
- "@dbmate/linux-x64": "2.2.0",
29
- "@dbmate/linux-arm": "2.2.0",
30
- "@dbmate/linux-arm64": "2.2.0",
31
- "@dbmate/darwin-x64": "2.2.0",
32
- "@dbmate/darwin-arm64": "2.2.0",
33
- "@dbmate/win32-x64": "2.2.0"
27
+ "@dbmate/linux-ia32": "2.3.0",
28
+ "@dbmate/linux-x64": "2.3.0",
29
+ "@dbmate/linux-arm": "2.3.0",
30
+ "@dbmate/linux-arm64": "2.3.0",
31
+ "@dbmate/darwin-x64": "2.3.0",
32
+ "@dbmate/darwin-arm64": "2.3.0",
33
+ "@dbmate/win32-x64": "2.3.0"
34
34
  }
35
35
  }