You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-3Lines changed: 18 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ In Cargo.toml add
16
16
17
17
```toml
18
18
[dependencies]
19
-
edit-distance = "2.1.2"
19
+
edit-distance = "2.1.3"
20
20
```
21
21
22
22
Then re-run `cargo build`. That fetches the dependencies and builds
@@ -41,12 +41,23 @@ cargo build
41
41
cargo test
42
42
```
43
43
44
-
## Contributing
44
+
## Release
45
45
46
-
Before sending a pull-request that goes beyond a bugfix, please open an issue to discuss. PRs without clear objective or separation of concerns aren't likely to be accepted.
46
+
- change Cargo.toml version
47
+
- change install instructions (version)
48
+
- update History section
49
+
- commit with version as comment
50
+
- tag with version, then:
51
+
52
+
```shell
53
+
cargo publish
54
+
git push
55
+
git push --tags
56
+
```
47
57
48
58
## History
49
59
60
+
2024-09-04 2.1.3 Update dev-dependency
50
61
2024-06-26 2.1.2 Fix formatting
51
62
2024-06-26 2.1.1 Replace CI badge, maintenance
52
63
2019-03-02 2.1.0 Optimize memory usage
@@ -55,6 +66,10 @@ Before sending a pull-request that goes beyond a bugfix, please open an issue to
55
66
2015-05-01 1.0.0 Release
56
67
2015-04-18 0.0.1 Initial upload
57
68
69
+
## Contributing
70
+
71
+
Before sending a pull-request that goes beyond a bugfix, please open an issue to discuss. PRs without clear objective or separation of concerns aren't likely to be accepted.
72
+
58
73
## Credits
59
74
60
75
Thanks to @skade for very helpful criticism of my first rust lib.
0 commit comments