Skip to content

Commit

Permalink
Merge pull request #192 from NASA-AMMOS/feature/0.11.3-release-prepar…
Browse files Browse the repository at this point in the history
…ation

Prepare Aerie 0.11.3 release
  • Loading branch information
patkenneally authored May 31, 2022
2 parents 27bfaf6 + 5cc5108 commit 2c5502c
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions command-expansion-server/test/utils/MissionModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export async function uploadMissionModel(graphqlClient: GraphQLClient): Promise<
/*
* Insert a mission model
*/
const bananaNationMissionModelUrl = new URL('../inputs/banananation-0.11.2-SNAPSHOT.jar', import.meta.url);
const bananaNationMissionModelUrl = new URL('../inputs/banananation-0.11.3-SNAPSHOT.jar', import.meta.url);

const formData = new FormData();
const file = await fileFrom(bananaNationMissionModelUrl.pathname);
formData.set('file', file, 'banananation-0.11.2-SNAPSHOT.jar');
formData.set('file', file, 'banananation-0.11.3-SNAPSHOT.jar');

const uploadRes = await fetch(`${process.env.MERLIN_GATEWAY_URL}/file`, {
method: 'POST',
Expand Down
2 changes: 1 addition & 1 deletion deployment/postgres-init-db/data/ui/views/example_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"owner": "system",
"timeCreated": 1615235211527,
"timeUpdated": 1615235211527,
"version": "0.11.2"
"version": "0.11.3"
},
"name": "Banananation",
"plan": {
Expand Down
2 changes: 1 addition & 1 deletion deployment/postgres-init-db/data/ui/views/example_1.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"owner": "system",
"timeCreated": 1615235194748,
"timeUpdated": 1615235194748,
"version": "0.11.2"
"version": "0.11.3"
},
"name": "InSight",
"plan": {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publishing.passwordEnvironmentVariable=GITHUB_TOKEN
# Override for releases

# Change the version number here
version.number=0.11.2
version.number=0.11.3
# If you are publishing a release *manually* (i.e. not through github actions),
# override this on the command line with `./gradlew publish -Pversion.isRelease=true`.
version.isRelease=false // override this on the command line

0 comments on commit 2c5502c

Please sign in to comment.