Skip to content

Commit

Permalink
chore: release 0.1.1 (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
camshaft authored Oct 7, 2022
1 parent 2ea2336 commit fd82d47
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 18 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 0.1.1 (2022-10-07)


### Bug Fixes

* add word boundary assertions for extracted keywords ([#72](https://github.com/awslabs/duvet/issues/72)) ([02c9245](https://github.com/awslabs/duvet/commit/02c92452158debf1be82c702824689ab01b08aa0))
* finish pattern state machine after iterating lines ([#76](https://github.com/awslabs/duvet/issues/76)) ([7d500ff](https://github.com/awslabs/duvet/commit/7d500ffec0bdeaefb1342645965c655b5fd69eed))
* normalize quotes with indentations ([#79](https://github.com/awslabs/duvet/issues/79)) ([65835f7](https://github.com/awslabs/duvet/commit/65835f7cb45c7a84f9f43d7e348225f954a871a5))
* prefix anchors in spec links ([#68](https://github.com/awslabs/duvet/issues/68)) ([93c7875](https://github.com/awslabs/duvet/commit/93c78754f2adb88b4412030b04719c95963f73a1))
* sort Requirements table ([#82](https://github.com/awslabs/duvet/issues/82)) ([71f6152](https://github.com/awslabs/duvet/commit/71f6152dca7a8649823fcddb5a0cccbecc8b7103))
* use BTreeMap for target data ([#86](https://github.com/awslabs/duvet/issues/86)) ([2ea2336](https://github.com/awslabs/duvet/commit/2ea2336fcdd2db247046320c7f3b7b7f4a397bea))

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "duvet"
version = "0.1.0"
version = "0.1.1"
description = "A code quality tool to help bound correctness."
authors = ["Cameron Bytheway <[email protected]>", "Ryan Emery <[email protected]>"]
edition = "2021"
Expand Down
20 changes: 11 additions & 9 deletions www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,19 @@
"private": true,
"dependencies": {
"@material-ui/core": "4",
"@material-ui/data-grid": "^4.0.0-alpha.9",
"@mui/x-data-grid": "4",
"@material-ui/icons": "4",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@testing-library/user-event": "^12.2.0",
"clsx": "1",
"copy-to-clipboard": "^3.3.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.0"
"copy-to-clipboard": "3",
"react": "17",
"react-dom": "17",
"react-router-dom": "5"
},
"devDependencies": {
"@testing-library/jest-dom": "5",
"@testing-library/react": "11",
"@testing-library/user-event": "12",
"react-scripts": "5"
},
"scripts": {
"start": "react-scripts start",
Expand Down
10 changes: 3 additions & 7 deletions www/public/script.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion www/src/spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { makeStyles } from "@material-ui/core/styles";
import { DataGrid } from "@material-ui/data-grid";
import { DataGrid } from "@mui/x-data-grid";
import Table from "@material-ui/core/Table";
import TableBody from "@material-ui/core/TableBody";
import TableCell from "@material-ui/core/TableCell";
Expand Down

0 comments on commit fd82d47

Please sign in to comment.