-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #110 from neithernut/release-prep
Release preparations
- Loading branch information
Showing
5 changed files
with
41 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]>"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|
@@ -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]> | ||
|