This repository has been archived by the owner on Aug 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix binary op lifetime inference (#12)
* fix lifetimes for borrowed-borrowed binary ops * added RELEASES.md and bumped patch version
- Loading branch information
1 parent
a226f53
commit 0f5668e
Showing
4 changed files
with
26 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "impl_ops" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
authors = ["Brian Porter <[email protected]>"] | ||
license="MIT" | ||
description = "Macros for easy operator overloading." | ||
keywords = ["macro", "operator", "overloading", "impl", "op"] | ||
categories = ["Rust patterns"] | ||
categories = ["rust-patterns"] | ||
repository = "https://github.com/brianwp3000/impl_ops" | ||
include = [ | ||
"**/*.rs", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Version 0.1 | ||
=========== | ||
* Initial release | ||
|
||
Version 0.1.1 | ||
============= | ||
* Fixed lifetime inference bug with binary operators |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters