diff options
author | Teddy Wing | 2022-06-04 19:50:06 +0200 |
---|---|---|
committer | Teddy Wing | 2022-06-04 19:50:06 +0200 |
commit | 75751a78116fa8c45abc6aabb3ae4715977c45f6 (patch) | |
tree | 6f61cee045f371a12579ebe1806eb365790831b2 | |
parent | 57cd001192adc095843af0c18044ff996fca0480 (diff) | |
download | reflectub-75751a78116fa8c45abc6aabb3ae4715977c45f6.tar.bz2 |
-rw-r--r-- | CHANGELOG | 15 | ||||
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 |
3 files changed, 17 insertions, 2 deletions
@@ -1,6 +1,21 @@ CHANGELOG ========= +v0.0.3 (2022-06-04): + Additions: + + * Add more context to error messages. + + Fixes: + + * Mirroring and fetching from 'git://' URLs caused timeout errors. Switch + to 'https://' URLs. + * Existing mirrored repositories with new commits were not updated. + Previously, only the GitHub repository's `updated_at` field was used to + determine if new changes were available. New pushes to a repository, + however, don't change the `updated_at` field, but the `pushed_at` field. + Now both date-times are used when checking for updates. + v0.0.2 (2021-06-25): Fixes: @@ -546,7 +546,7 @@ dependencies = [ [[package]] name = "reflectub" -version = "0.0.2" +version = "0.0.3" dependencies = [ "anyhow", "chrono", @@ -1,6 +1,6 @@ [package] name = "reflectub" -version = "0.0.2" +version = "0.0.3" edition = "2018" [dependencies] |