Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

Commit

Permalink
Fixes #14.
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrowndotje committed Oct 26, 2023
1 parent 2d48d26 commit 2de11e2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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").
Expand Down

0 comments on commit 2de11e2

Please sign in to comment.