Skip to content

Commit

Permalink
chore: version bump to 0.1.0-alpha.5 (#55)
Browse files Browse the repository at this point in the history
* chore: version bump to 0.1.0-alpha.5

* fix: version bump for [email protected]

* fix: add type for redux-thunk
  • Loading branch information
0xtsukino authored Apr 9, 2024
1 parent a42bb2e commit 763335b
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 21 deletions.
18 changes: 9 additions & 9 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tlsn-extension",
"version": "0.1.0.4",
"version": "0.1.0.5",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -36,7 +36,7 @@
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"tailwindcss": "^3.3.3",
"tlsn-js": "0.1.0-alpha.4.1"
"tlsn-js": "0.1.0-alpha.5.1"
},
"devDependencies": {
"@babel/core": "^7.20.12",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/pages/Options/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from '../../utils/storage';

export default function Options(): ReactElement {
const [notary, setNotary] = useState('https://notary.pse.dev');
const [notary, setNotary] = useState('https://notary.pse.dev/v0.1.0-alpha.5');
const [proxy, setProxy] = useState('wss://notary.pse.dev/proxy');
const [dirty, setDirty] = useState(false);

Expand Down
5 changes: 4 additions & 1 deletion src/reducers/requests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ export const setRequests = (requests: RequestLog[]): Action<RequestLog[]> => ({
});

export const notarizeRequest = (options: RequestHistory) => async () => {
const notaryUrl = await get(NOTARY_API_LS_KEY, 'https://notary.pse.dev');
const notaryUrl = await get(
NOTARY_API_LS_KEY,
'https://notary.pse.dev/v0.1.0-alpha.5',
);
const websocketProxyUrl = await get(
PROXY_API_LS_KEY,
'wss://notary.pse.dev/proxy',
Expand Down
1 change: 1 addition & 0 deletions src/utils/store.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type {} from 'redux-thunk/extend-redux';
import { applyMiddleware, createStore } from 'redux';
import thunk from 'redux-thunk';
import { createLogger } from 'redux-logger';
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6944,10 +6944,10 @@
"resolved" "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz"
"version" "1.1.0"

"[email protected].4.1":
"integrity" "sha512-vQdauBqRkB9i6EnHbuCP4JJyZ+/YT/r2WbGVJVqMbYT0BLYTOx7zI+zv9RkmMZ0a8urhPZT/bJPVWTrymyleWg=="
"resolved" "https://registry.npmjs.org/tlsn-js/-/tlsn-js-0.1.0-alpha.4.1.tgz"
"version" "0.1.0-alpha.4.1"
"[email protected].5.1":
"integrity" "sha512-hXwUmmxS/7n0nsZs+8V7N+05xo+QtWAAYcHSW1yJ8fCGH72nu+GvLUy6P3+OjiJA/NwNtV7fMVLfnWgJNRB7OA=="
"resolved" "https://registry.npmjs.org/tlsn-js/-/tlsn-js-0.1.0-alpha.5.1.tgz"
"version" "0.1.0-alpha.5.1"
dependencies:
"comlink" "^4.4.1"

Expand Down

0 comments on commit 763335b

Please sign in to comment.