Skip to content

Commit

Permalink
Merge pull request #110 from neithernut/release-prep
Browse files Browse the repository at this point in the history
Release preparations
  • Loading branch information
neithernut authored Jun 22, 2017
2 parents 67498de + 1bcc890 commit 5671940
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 16 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# git-dit ChangeLog

## v0.2 (2017-06-22)

Changes:
* Rewrite in Rust (single binary)
* Drop "prepare-metadata" script
* "push" and "fetch" now only support dummy auth and ssh-agent
* Updated README
* Updated man page

Added features:
* Documentation of data model, semantics and use-cases
* Library crate "libgitdit"
* Long options

Bug-fixes:
* Read editor from git config, fall back to default
(We previously relied on the `EDITOR` variable.)


## v0.1 (2017-02-01)

Initial prototype, written in bash.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-dit"
version = "0.1.0"
version = "0.2.0"
authors = ["Matthias Beyer <[email protected]>",
"Julian Ganz <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion git-dit.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
% GIT-DIT(1) User Manuals
% Matthias Beyer, Julian Ganz
% January 16, 2017
% June 22, 2017

# NAME

Expand Down
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libgitdit"
version = "0.1.0"
version = "0.2.0"
authors = ["Matthias Beyer <[email protected]>",
"Julian Ganz <[email protected]>"]

Expand Down
26 changes: 13 additions & 13 deletions src/cli.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: git-dit
version: 0.1.0
version: 0.2.0
authors:
- Julian Ganz <[email protected]>
- Matthias Beyer <mail@beyermatthias>
Expand All @@ -23,7 +23,7 @@ subcommands:
# Plumbing subcommands
- check-message:
about: This command checks the message in file for validity
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -45,7 +45,7 @@ subcommands:
Supplying an issue hash but no parent is considered an error.
Returns (prints) the hash of the new commit.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -63,7 +63,7 @@ subcommands:

- find-tree-init-hash:
about: This command prints the init hash of the issue commit belongs to.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -78,7 +78,7 @@ subcommands:
about: >
Prints a log of commit tags, from the supplied issue head to
the initial issue message.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -91,7 +91,7 @@ subcommands:

- get-issue-tree-init-hashes:
about: Lists all SHA1 hashes of all issues (introducing commit)
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -100,7 +100,7 @@ subcommands:
# Porcelain subcommands
- fetch:
about: Fetch issues
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand Down Expand Up @@ -132,7 +132,7 @@ subcommands:
<hash> (<date when the issue was added, human readable>) <header line>
More functionality may come and the output format may change.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -157,7 +157,7 @@ subcommands:

- new:
about: Create a new bug report
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand Down Expand Up @@ -213,7 +213,7 @@ subcommands:
about: >
Push all refs associated with issues.
If no issue were supplied, all issues will be pushed.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand All @@ -230,7 +230,7 @@ subcommands:

- reply:
about: Reply to a specific message in an issue.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand Down Expand Up @@ -284,7 +284,7 @@ subcommands:

- show:
about: This uses 'git log' to print the issues.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand Down Expand Up @@ -350,7 +350,7 @@ subcommands:
<value> part can be in quotes to permit spaces.
Multiple -s are permitted, later specified values will override
former. Alter tags of an issue.
version: 0.1.0
version: 0.2.0
authors:
- Matthias Beyer <[email protected]>
- Julian Ganz <[email protected]>
Expand Down

0 comments on commit 5671940

Please sign in to comment.