Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lord committed Feb 27, 2021
1 parent b0d7c53 commit 0484e8e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "anchors"
version = "0.5.0"
version = "0.6.0"
authors = ["Robert Lord <[email protected]>"]
edition = "2018"
description = "async incremental computations"
Expand Down
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# 0.6.0

- Moved a lot of internal machinery into `expert`. As a normal anchors user, you shouldn't need to use anything except stuff exported from `singlethread`!
2 changes: 1 addition & 1 deletion src/singlethread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ struct AnchorDebugInfo {
}

impl AnchorDebugInfo {
fn to_string(&self) -> String {
fn _to_string(&self) -> String {
match self.location {
Some((name, location)) => format!("{} ({})", location, name),
None => format!("{}", self.type_info),
Expand Down

0 comments on commit 0484e8e

Please sign in to comment.