diff --git a/docs/changelog.md b/docs/changelog.md index b5c82df..6fe1e9b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,8 +1,9 @@ # Changelog -## 1.5.1 (unreleased) +## 1.6.0 (unreleased) - Fixes https://github.com/structurizr/import/issues/13 (Mermaid diagrams not working). +- Fixes https://github.com/structurizr/import/issues/14 (Date of ADRs can't be changed from UTC) ## 1.5.0 (25th July 2023) diff --git a/src/main/java/com/structurizr/importer/documentation/AdrToolsDecisionImporter.java b/src/main/java/com/structurizr/importer/documentation/AdrToolsDecisionImporter.java index fccdba3..0a14e90 100644 --- a/src/main/java/com/structurizr/importer/documentation/AdrToolsDecisionImporter.java +++ b/src/main/java/com/structurizr/importer/documentation/AdrToolsDecisionImporter.java @@ -45,7 +45,7 @@ public class AdrToolsDecisionImporter implements DocumentationImporter { private static final Pattern LINK_REGEX = Pattern.compile("(.*) \\[.*]\\((.*)\\)"); private String dateFormat = "yyyy-MM-dd"; - private TimeZone timeZone = TimeZone.getTimeZone("UTC"); + private TimeZone timeZone = TimeZone.getDefault(); /** * Sets the date format to use when parsing dates (the default is "yyyy-MM-dd").