Skip to content

Instantly share code, notes, and snippets.

@delta1
Last active October 29, 2020 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save delta1/85140a0c3936ebe22d504212c8c44348 to your computer and use it in GitHub Desktop.
Save delta1/85140a0c3936ebe22d504212c8c44348 to your computer and use it in GitHub Desktop.
formatted merge commits since the previous tag
git log --pretty=format:"%s" $(git describe --tags --abbrev=0 \@\^)..\@ |
sed '/Merge #/!d' |
sed 's/Merge #//' |
sed 's/://' |
sed -E 's/[0-9]+/[#&](https:\/\/github.com\/tari-project\/tari\/pull\/&)/' |
sed 's/.*/- &/g'
@delta1
Copy link
Author

delta1 commented Oct 28, 2020

example output from current tari tag 0.6

  • #2393 Increase comms version Fix clippy warnings
  • #2396 Fix cargo fmt and clippy
  • #2355 Add automated stress test to base node wallet
  • #2394 Update peer seed
  • #2394 Remove rincewind from default toml files
  • #2391 Create Ridcully testnet
  • #2370 Removed difficulty hack in monero_rx
  • #2388 Add ridcully config as default
  • #2387 Fix thread panic when getting non u128 total_diff
  • #2386 Merge development
  • #2384 Fix unit tests for get_target_difficulty
  • #2381 Add ridcully config
  • #2383 Revert change to fetch blocks utxos txos (#2357)
  • #2358 Add more integration tests
  • #2379 Add config option to disable wallet in Base Node
  • #2380 Change accumulated difficulty to use the difficulty as just squared
  • #2374 Implement pending transaction cancellation in the TUI app
  • #2353 Display connected peers in TUI
  • #2348 Base node block sync RPC service
  • #2354 Fix transaction service bug with tx send/receive cancellation
  • #2378 Fix for network discovery state machine spin loop
  • #2375 Remove cyclic ban if online
  • #2376 Bug fix for offline connectivity state

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment