Skip to content

Commit

Permalink
chore: drop invoking deno with the --unstable flag
Browse files Browse the repository at this point in the history
apparently it's not needed anymore and will be deprecated in deno 2.0
anyways
  • Loading branch information
JohannesRudolph committed Mar 10, 2024
1 parent 3f740f9 commit 364955b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

// ATTENTION: DO NOT COMMIT CHANGES TO THIS VERSION STRING, it's replaced in build.sh when performing a release.
// This should always have the value "v0.22.0"
export const VERSION = "vDEVELOPMENT".substring(1);
export const VERSION = "v0.24.0-2-g3f740f9".substring(1);

/**
* The flags we want collie to be invoked with.
Expand All @@ -11,7 +11,7 @@ export const VERSION = "vDEVELOPMENT".substring(1);
* see https://deno.com/blog/v1.21#deno-check-and-the-path-to-not-type-checking-by-default
*/
export const FLAGS =
`--unstable --allow-read --allow-write --allow-env --allow-run --allow-net --no-check`;
`--allow-read --allow-write --allow-env --allow-run --allow-net --no-check`;
export const GITHUB_REPO = "meshcloud/collie-cli";

// Use the CLI Command when mentioning it as a command to run, e.g.: Please run "${CLI} -h" to see more.
Expand Down

0 comments on commit 364955b

Please sign in to comment.