Skip to content

Commit

Permalink
upgrade dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Jul 14, 2019
1 parent 3d3ce41 commit 6590c13
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hg-git-fast-import"
version = "1.2.2"
version = "1.2.3"
authors = ["Alexander Korolev <[email protected]>"]
license = "Unlicense OR MIT"
description = """
Expand All @@ -15,7 +15,7 @@ edition = "2018"

[dependencies]
log = "0.4"
simplelog = "0.5"
simplelog = "0.6"
regex = "1"
lazy_static = "1"
toml = "0.5"
Expand All @@ -31,3 +31,6 @@ features = ["derive"]

[dev-dependencies]
pretty_assertions = "0.6"

[profile.release]
lto = true
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ From source:

```bash
$ hg-git-fast-import --help
hg-git-fast-import 1.2.2
hg-git-fast-import 1.2.3
Alexander Korolev <[email protected]>
A utility to import single and multiple Mercurial repositories to Git.

Expand All @@ -57,7 +57,7 @@ Import of single repository:

```bash
$ hg-git-fast-import single --help
hg-git-fast-import-single 1.2.2
hg-git-fast-import-single 1.2.3
Alexander Korolev <[email protected]>
Exports single Mercurial repository to Git fast-import compatible format

Expand Down Expand Up @@ -94,7 +94,7 @@ Import of multiple repositories:
```bash
$ hg-git-fast-import multi --help
hg-git-fast-import-multi 1.2.2
hg-git-fast-import-multi 1.2.3
Alexander Korolev <[email protected]>
Exports multiple Mercurial repositories to single Git repo in fast-import compatible format

Expand Down Expand Up @@ -125,7 +125,7 @@ Rebuild saved state of repo:
```bash
$ hg-git-fast-import build-marks --help
hg-git-fast-import-build-marks 1.2.2
hg-git-fast-import-build-marks 1.2.3
Alexander Korolev <[email protected]>
Rebuilds saved state of repo

Expand Down
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cargo install --path .
```bash
$ hg-git-fast-import --help
hg-git-fast-import 1.2.2
hg-git-fast-import 1.2.3
Alexander Korolev <[email protected]>
A utility to import single and multiple Mercurial repositories to Git.
Expand All @@ -57,7 +57,7 @@ Import of single repository:
```bash
$ hg-git-fast-import single --help
hg-git-fast-import-single 1.2.2
hg-git-fast-import-single 1.2.3
Alexander Korolev <[email protected]>
Exports single Mercurial repository to Git fast-import compatible format
Expand Down Expand Up @@ -94,7 +94,7 @@ Import of multiple repositories:
```bash
$ hg-git-fast-import multi --help
hg-git-fast-import-multi 1.2.2
hg-git-fast-import-multi 1.2.3
Alexander Korolev <[email protected]>
Exports multiple Mercurial repositories to single Git repo in fast-import compatible format
Expand Down Expand Up @@ -125,7 +125,7 @@ Rebuild saved state of repo:
```bash
$ hg-git-fast-import build-marks --help
hg-git-fast-import-build-marks 1.2.2
hg-git-fast-import-build-marks 1.2.3
Alexander Korolev <[email protected]>
Rebuilds saved state of repo
Expand Down

0 comments on commit 6590c13

Please sign in to comment.