File tree 5 files changed +16
-5
lines changed
5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ ## [ Unreleased]
4
+ ### Changed
5
+ - Versions are now for the whole of dapptools, rather than per-tool.
6
+ Accordingly, the old CHANGELOG files are superseded by this one.
Original file line number Diff line number Diff line change
1
+ 1
Original file line number Diff line number Diff line change 15
15
1 . add a new ` solc_X.Y.Z ` in the ` unreleased ` section
16
16
1 . update ` rev ` and ` sha256 ` based on the output from `nix-prefetch-git
17
17
git@github.com : dapphub /nixpkgs refs/heads/solc-X.Y.Z`
18
- 1 . bump the version number in ` dapp---version ` , ` src/dapp/default.nix ` and the changelog
18
+ 1 . bump the version number in ` VERSION ` and populate the changelog
19
19
1 . commit the changes
20
20
1 . open a pr from ` dapphub/dapptools:solc-X.Y.Z ` to ` dapphub/dapptools:master `
21
21
1 . once merged tag the commit with the new version number
Original file line number Diff line number Diff line change 3
3
4
4
stdenv . mkDerivation rec {
5
5
name = "seth-${ version } " ;
6
- version = "0.8.4" ;
6
+ version = lib . fileContents ../../VERSION ;
7
7
src = ./. ;
8
8
9
9
nativeBuildInputs = [ makeWrapper ] ;
@@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
18
18
else "" }
19
19
'' ;
20
20
21
+ postFixup = ''
22
+ sed -i s/VERSION_PLACEHOLDER/${ version } / $out/libexec/seth/seth---version
23
+ '' ;
24
+
21
25
meta = {
22
26
description = "Command-line client for talking to Ethereum nodes" ;
23
27
homepage = https://github.com/dapphub/dapptools/src/seth/ ;
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
- cat << .
3
- seth 0.8.4
2
+ cat << EOF
3
+ seth VERSION_PLACEHOLDER
4
4
Copyright (C) 2016, 2017 Daniel Brockman <daniel@dapphub.com>
5
5
License: GNU GPL version 3 or later <https://gnu.org/licenses/gpl>.
6
6
This is free software: you are free to change and redistribute it.
7
7
There is NO WARRANTY, to the extent permitted by law.
8
- .
8
+ EOF
You can’t perform that action at this time.
0 commit comments