Skip to content

Commit b7e4d4a

Browse files
authored
v5.3.0 bake constants and static content (sourcegraph#60482)
bake constants and static content for version v5.3.0
1 parent a7814df commit b7e4d4a

File tree

4 files changed

+317
-3
lines changed

4 files changed

+317
-3
lines changed

client/web/src/enterprise/batches/list/BatchChangesChangelogAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import styles from './BatchChangesListIntro.module.scss'
1313
* Ie. After 5.0 is cut, this should be bumped to 5.1, and so on. This ensures we
1414
* always render the right changelog.
1515
*/
16-
const CURRENT_VERSION = '5.2'
16+
const CURRENT_VERSION = '5.3'
1717
/**
1818
* SHOW_CHANGELOG has to be set to true when a changelog entry is added for a release.
1919
* After every release, this will be set back to `false`. Chromatic will also verify

internal/database/migration/shared/data/cmd/generator/consts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
// NOTE: This should be kept up-to-date with the upcoming version to be released, and bumped after.
1010
// fallback schemas everything we support migrating to. The release tool automates this upgrade, so don't touch this :)
1111
// This should be the last minor version since patch releases only happen in the release branch.
12-
const maxVersionString = "5.2.0"
12+
const maxVersionString = "5.3.0"
1313

1414
// MaxVersion is the highest known released version at the time the migrator was built.
1515
var MaxVersion = func() oobmigration.Version {

0 commit comments

Comments
 (0)