diff --git a/CHANGELOG.md b/CHANGELOG.md index 630c79dd08..b60ded8b7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ Changelog ========= +[0.7.0](https://github.com/ordinals/ord/releases/tag/0.7.0) - 2023-06-23 +--------------------------------------------------------------------- + +### Added +- Tweak publish recipe (#2212) +- Handle cursed inscriptions edge cases (#2209) +- Add export command for table (#2208) +- Add Markdown media type (#2206) +- Add blob urls to Content Security Policy headers (#2203) +- Check inscribe destination address network (#2189) + + [0.6.2](https://github.com/ordinals/ord/releases/tag/0.6.2) - 2023-06-15 --------------------------------------------------------------------- diff --git a/Cargo.lock b/Cargo.lock index 9c0273d677..d49b634ff9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2162,7 +2162,7 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "ord" -version = "0.6.2" +version = "0.7.0" dependencies = [ "anyhow", "axum", diff --git a/Cargo.toml b/Cargo.toml index d3482b93ff..1d343db9d1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ord" description = "◉ Ordinal wallet and block explorer" -version = "0.6.2" +version = "0.7.0" license = "CC0-1.0" edition = "2021" autotests = false diff --git a/justfile b/justfile index be97846df7..94c8cd85e7 100644 --- a/justfile +++ b/justfile @@ -81,6 +81,7 @@ rebuild-ord-dev-database: && update-ord-dev prepare-release revision='master': #!/usr/bin/env bash + set -euxo pipefail git checkout {{ revision }} git pull upstream {{ revision }} echo >> CHANGELOG.md @@ -88,6 +89,7 @@ prepare-release revision='master': $EDITOR CHANGELOG.md $EDITOR Cargo.toml VERSION=`sed -En 's/version[[:space:]]*=[[:space:]]*"([^"]+)"/\1/p' Cargo.toml | head -1` + cargo check git checkout -b release-$VERSION git add -u git commit -m "Release $VERSION"