aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG15
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
3 files changed, 17 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 4408158..9e98b6b 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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:
diff --git a/Cargo.lock b/Cargo.lock
index 7adda12..3c2a49d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -546,7 +546,7 @@ dependencies = [
[[package]]
name = "reflectub"
-version = "0.0.2"
+version = "0.0.3"
dependencies = [
"anyhow",
"chrono",
diff --git a/Cargo.toml b/Cargo.toml
index 98309b4..717fd0b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "reflectub"
-version = "0.0.2"
+version = "0.0.3"
edition = "2018"
[dependencies]