Skip to content
This repository was archived by the owner on Apr 2, 2024. It is now read-only.

Commit 76d9876

Browse files
committed
Fix app version number
We previously had the version number 0.1.0-beta.3.dev.1 but since the version number we are releasing is 0.1.0-beta.3 the version number should have been 0.1.0-beta.2.dev.1
1 parent 547064f commit 76d9876

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

pkg/pgmodel/migrations/migration_files_generated.go

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/version/version.go

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ var (
1313
// usually represents the number of SQL migrations that happened in the cycle
1414
// (see below) and should start at 0.
1515
//
16+
// Guidance for increasing versions after release:
17+
// - If releasing a version without a pre-release tag, bump the patch and add `-dev.0`
18+
// pre-release tag.
19+
// - If releasing a version with a pre-release tag, add `.dev.0` to prelease tag. Do not
20+
// bump the existing prelease tag.
1621
// Example if releasing 0.1.1, the next development cycle is 0.1.2-dev.0
17-
// Example if releasing 0.1.3-beta the next development cycle is 0.1.3-beta.1.dev.0
22+
// Example if releasing 0.1.3-beta.1 the next development cycle is 0.1.3-beta.1.dev.0
1823
//
1924
// When introducing a new SQL migration script, you must bump the version of the app
20-
// since an app version must uniquely determine the state o f the schema.
25+
// since an app version must uniquely determine the state of the schema.
2126
// It is customary to bump the version by incrementing the numeral after
2227
// the `dev` tag. The SQL migration script name must correspond to the /new/ version.
23-
Version = "0.1.0-beta.3.dev.1"
28+
Version = "0.1.0-beta.2.dev.1"
2429
CommitHash = ""
2530
)

0 commit comments

Comments
 (0)