Skip to content

Commit

Permalink
version 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp15b committed May 22, 2024
1 parent ce54ac1 commit 8d35b38
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [

[package]
name = "caesar"
version = "2.0.3"
version = "2.0.4"
authors = ["Philipp Schroer <phisch@cs.rwth-aachen.de>"]
edition = "2018"
build = "build.rs" # LALRPOP preprocessing
Expand Down
2 changes: 1 addition & 1 deletion vscode-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "Caesar Verifier",
"description": "The quantitative deductive verifier Caesar for VSCode",
"publisher": "rwth-moves",
"version": "2.0.3",
"version": "2.0.4",
"repository": {
"type": "git",
"url": "https://github.com/moves-rwth/caesar.git",
Expand Down
2 changes: 1 addition & 1 deletion vscode-ext/src/Verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class Verifier {
this.logger = new Logger();
this.walkthrough = new WalkthroughComponent(context);
this.installer = new ServerInstaller(context, this);
this.client = new CaesarClient(context, this.logger.outputChannel, this.walkthrough, this.installer);
this.client = new CaesarClient(context, this.logger, this.walkthrough, this.installer);
this.statusBar = new StatusBarComponent(this);
this.gutterStatus = new GutterStatusComponent(this);
this.displayComputedPre = new ComputedPreComponent(this);
Expand Down

0 comments on commit 8d35b38

Please sign in to comment.