Skip to content

Commit

Permalink
Release 0.7.0 (#2213)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphjaph committed Jun 23, 2023
1 parent f587c40 commit f52969f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 <INSCRIPTION_NUMBER_TO_INSCRIPTION_ID> 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
---------------------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 2 additions & 0 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,15 @@ 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
git log --pretty='format:- %s' >> CHANGELOG.md
$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"
Expand Down

0 comments on commit f52969f

Please sign in to comment.