Skip to content

Commit

Permalink
Bump version to prepare for v0.5.4 release
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Henneberger <git@danielhenneberger.com>
  • Loading branch information
henneberger committed Aug 27, 2024
1 parent fd8dd84 commit 02071e9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 13 deletions.
9 changes: 3 additions & 6 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,16 @@ Step 1: Assure you are in a clean working main
- git pull

Prerelease:
Update the build.gradle.ftl in the profiles to point to the new sqrl version
Update the build.gradle.ftl and package.json in the profiles to point to the new sqrl version. Update the docker image references.
```
sqrlVersion = "0.?"
```

Update the RootCommand version from 'v0.x.0'

Update the default dependency version from 'v0.x.0'
Update the default dependency version in the cli from 'v0.x.0'

Update the Dockerfile in the vertx profile:
```
FROM datasqrl/sqrl-server:v.0?
```
Commit and push this with a message "Bump version to prepare for v0.x release"

Step 2: Run the command to update the POM's, add a tag, and push the new commit.
Note: Update the release version on the command below
Expand Down
2 changes: 1 addition & 1 deletion profiles/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ It is also recommended to specify the exact version used in the dependencies sec
{
"datasqrl.profile.default": {
"name": "datasqrl.profile.default",
"version": "0.5.3",
"version": "0.5.4",
"variant": "dev"
}
}
Expand Down
6 changes: 3 additions & 3 deletions profiles/default/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"version": "1",
"enabled-engines": ["vertx", "postgres", "kafka", "flink"],
"compile" : {
"sqrl-version": "0.5.3",
"sqrl-version": "0.5.4",
"flink-build-image": "gradle:8.6-jdk11",
"sqrl-vertx-image": "datasqrl/sqrl-server:v0.5.3"
"sqrl-vertx-image": "datasqrl/sqrl-server:v0.5.4"
},
"engines" : {
"flink" : {
Expand Down Expand Up @@ -68,7 +68,7 @@
},
"package": {
"name": "datasqrl.profile.default",
"version": "0.5.3",
"version": "0.5.4",
"variant": "dev",
"description": "A docker compose datasqrl profile",
"homepage": "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public static String writeProfile() {
ObjectNode compileNode = mapper.createObjectNode();
compileNode.put("sqrl-vertx-image", "vertx-latest:latest");
compileNode.put("flink-build-image", "flink-build:latest");
compileNode.put("sqrl-version", "0.5.4-SNAPSHOT");
compileNode.put("sqrl-version", "0.5.5-SNAPSHOT");

// Attach the compile object to the root node
rootNode.set("compile", compileNode);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import picocli.CommandLine;
import picocli.CommandLine.ScopeType;

@CommandLine.Command(name = "datasqrl", mixinStandardHelpOptions = true, version = "v0.5.3",
@CommandLine.Command(name = "datasqrl", mixinStandardHelpOptions = true, version = "v0.5.4",
subcommands = {CompilerCommand.class,
PublishCommand.class, TestCommand.class, LoginCommand.class, RunCommand.class})
@Getter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ public PackageJson setDefaultConfig(PackageJson packageJson) {
packageJson.setProfiles(new String[]{"datasqrl.profile.default"});
packageJson.getDependencies()
.addDependency("datasqrl.profile.default",
new DependencyImpl("datasqrl.profile.default", "0.5.3", "dev"));
new DependencyImpl("datasqrl.profile.default", "0.5.4", "dev"));

return packageJson;
}
Expand Down

0 comments on commit 02071e9

Please sign in to comment.