Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
LuukBlankenstijn committed Jan 12, 2025
1 parent 5f75edd commit 4eef474
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ The current version of ParelPracht is **v1.3.4**, released on March 5th, 2024.
You can find the release notes below.
----------------------

## v1.4.0 (12-01-2025)
### Added
- Interface for the /setup endpoint

### Bugfixes
- Fix links from dashboard page to insights page
- Fix table filters on contract and invoice page

## v1.3.4 (05-03-2024)
### Changes
- Hide broken contract and invoice filter buttons
Expand Down
4 changes: 2 additions & 2 deletions src/components/Version.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Modal, Segment } from 'semantic-ui-react';
import { marked } from 'marked';
import releaseNotes from '../changelog.md';

export const version = 'v1.3.4';
export const version = 'v1.4.0';

interface Props {}
interface State {
Expand All @@ -20,7 +20,7 @@ class VersionModal extends React.Component<Props, State> {

async componentDidMount() {
const rawLog = await fetch(releaseNotes);
const changelog = marked(await rawLog.text());
const changelog = await marked(await rawLog.text());
this.setState({
changelog,
});
Expand Down

0 comments on commit 4eef474

Please sign in to comment.