Skip to content

Commit

Permalink
chore: release v0.1.0-alpha.6 (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau authored Jun 26, 2024
1 parent 58c7132 commit 292b426
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tlsn-js",
"version": "v0.1.0-alpha.5.3",
"version": "v0.1.0-alpha.6.0",
"description": "",
"repository": "https://github.com/tlsnotary/tlsn-js",
"main": "build/index.js",
Expand Down
12 changes: 6 additions & 6 deletions quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ To run your own websocket proxy for `https://swapi.dev` **locally**:

1. Install [websocat](https://github.com/vi/websocat):

| tool | command |
|--------|-------------------------------|
| cargo | `cargo install websocat` |
| brew | `brew install websocat` |
| source | https://github.com/vi/websocat|
| tool | command |
| ------ | ------------------------------ |
| cargo | `cargo install websocat` |
| brew | `brew install websocat` |
| source | https://github.com/vi/websocat |

2. Run a websocket proxy for `https://swapi.dev`:
```sh
Expand All @@ -31,7 +31,7 @@ For this demo, we also need to run a local notary server.

1. Clone the TLSNotary repository:
```shell
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.5"
git clone https://github.com/tlsnotary/tlsn.git --branch "v0.1.0-alpha.6"
```
2. Edit the notary server config file (`notary-server/config/config.yaml`) to turn off TLS so that the browser extension can connect to the local notary server without requiring extra steps to accept self-signed certificates in the browser.
```yaml
Expand Down
2 changes: 1 addition & 1 deletion test/specs/full-integration-swapi.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { assert } from '../utils';
maxTranscriptSize: 16384,
notaryUrl: process.env.LOCAL_NOTARY
? 'http://localhost:7047'
: 'https://notary.pse.dev/v0.1.0-alpha.5',
: 'https://notary.pse.dev/v0.1.0-alpha.6',
websocketProxyUrl: process.env.LOCAL_WS
? 'ws://localhost:55688'
: 'wss://notary.pse.dev/proxy?token=swapi.dev',
Expand Down
2 changes: 1 addition & 1 deletion utils/build-tlsn-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ else
fi

# Checkout the specific tag
git checkout "v0.1.0-alpha.5"
git checkout "v0.1.0-alpha.6"

for dir in "tlsn/tlsn-server-fixture/" "notary-server"; do
# Change to the specific subdirectory
Expand Down
6 changes: 2 additions & 4 deletions wasm/prover/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,8 @@ time = { version = "0.3.34", features = ["wasm-bindgen"] }
# Used to calculate elapsed time.
web-time = "1.0"

tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.5", package = "tlsn-core" }
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.5", package = "tlsn-prover", features = [
"tracing",
] }
tlsn-core = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.6", package = "tlsn-core" }
tlsn-prover = { git = "https://github.com/tlsnotary/tlsn.git", tag = "v0.1.0-alpha.6", package = "tlsn-prover" }

web-sys = { version = "0.3.4", features = [
"BinaryType",
Expand Down

0 comments on commit 292b426

Please sign in to comment.