Skip to content

Commit

Permalink
release Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wagner-intevation committed Jul 3, 2023
1 parent 02094f8 commit 64ff78a
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/src/components/WebinputCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -705,7 +705,7 @@ export default ({
errorMessage: null,
showErrorModal: false,
mailgenTargetGroups: [],
clientVersion: "1.0.0a3",
clientVersion: "1.0.0",
}
},
computed: {
Expand Down
9 changes: 9 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
intelmq-webinput-csv (1.0.0-1) stable; urgency=medium

* Design and usability updates.
* frontend: Cleanups and removal of deprectated single-template input field in favor of named templates.
* frontend & backend: Previews per named template input group, using complete example data
* backend: fixes

-- Sebastian Wagner <[email protected]> Fri, 03 Jul 2023 17:01:04 +0200

intelmq-webinput-csv (1.0.0a3) unstable; urgency=medium

* Complete template management for mailgen, pass templates to mailgen
Expand Down
7 changes: 7 additions & 0 deletions docs/Developers-Guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ yarn run dev
## Using docker

See https://github.com/Intevation/intelmq-cb-mailgen-docker#user-content-scenario-2-development-dev

## Release a new version

* make a changelog entry in `debian/changelog` using `dch` command line tool. don't forget the revision
* set `clientVersion` in `client/src/components/WebinputCSV.vue`
* set `__version_info__` in `intelmq_webinput_csv/version.py`
* make a commit and create a tag from it
2 changes: 1 addition & 1 deletion intelmq_webinput_csv/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <[email protected]>, 2022-2023 Bundesamt für Sicherheit in der Informationstechnik
# SPDX-License-Identifier: AGPL-3.0-or-later
__version_info__ = (1, 0, 0, 'a3')
__version_info__ = (1, 0, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 64ff78a

Please sign in to comment.