Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Aaronkaplan pre rel 3.3.0 #2470

Merged
merged 14 commits into from
Mar 1, 2024
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@



3.3.0 (unreleased)
3.3.0 (2024-03-01)
------------------

### Configuration
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ This file lists all changes which have an affect on the administration of IntelM
Please refer to the change log for a full list of changes.


3.3.0 Feature release (unreleased)
---------------------------------
3.3.0 Feature release (2024-03-01)
---------------------

### Documentation
The documentation is now available at [docs.intelmq.org](https://docs.intelmq.org/). Documentation has been updated and restructured into User, Administrator and Developer Guide. It provides modern look with various quality of life improvements. Big thanks to to @gethvi.
Expand Down
6 changes: 3 additions & 3 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
intelmq (3.2.2a1-1) UNRELEASED; urgency=medium
intelmq (3.3.0-1) stable; urgency=medium

*
* 3.3.0 Feature release

-- Sebastian Wagner <[email protected]> Tue, 05 Sep 2023 15:05:07 +0200
-- Aaron Kaplan <[email protected]> Fr, 01 Mar 2024 14:19:00 +0100

intelmq (3.2.1-2) stable; urgency=medium

Expand Down
15 changes: 7 additions & 8 deletions docs/dev/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ different.
- Check the upgrade functions in `intelmq/lib/upgrades.py`.
- Close the milestone on GitHub and move any open issues to the next
one.
- `docs/user/installation.rst`: Update supported operating systems.
- `docs/admin/installation/linux-packages.md`: Update supported operating systems.

## Documentation

Expand All @@ -39,22 +39,21 @@ Eventually adapt the default log levels if necessary. Should be INFO for stable
### IntelMQ Manager

- `intelmq_manager/version.py`: Update the version.
- `intelmq_manager/static/images/js/about.js`: Update the version.
- `intelmq_manager/static/js/about.js`: Update the version.

## Commit, push, review and merge

Commit your changes in a separate branch, the final commit message
should start with `REL:`. Push and create a pull request to maintenance
and after that from maintenance to master. Someone else should review
the changes. Eventually fix them, make sure the `REL:` is the last
commit, you can also push that one at last, after the reviews.
Commit your changes in a separate branch, the final commit message should start
with `REL:`. Push and create a pull request to the `develop` branch. Someone
else should review the changes. Eventually fix them, make sure the `REL:` is
the last commit, you can also push that one at last, after the reviews.

Why a separate branch? Because if problems show up, you can still
force-push to that one, keeping the release commit the latest one.

## Tag and release

Tag the commit with `git tag -s version HEAD`, merge it into master,
Tag the commit with `git tag -s version HEAD`, merge it into `develop`,
push the branches *and* the tag. The tag is just `a.b.c`, not prefixed
with `v` (that was necessary only with SVN a long time ago...).

Expand Down
1 change: 1 addition & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

![IntelMQ](docs/static/images/Logo_Intel_MQ.svg)


# Introduction

**IntelMQ** is a solution for IT security teams (CERTs & CSIRTs, SOCs
Expand Down
2 changes: 1 addition & 1 deletion intelmq/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
#
# SPDX-License-Identifier: AGPL-3.0-or-later

__version_info__ = (3, 2, 2, 'a1')
__version_info__ = (3, 3, 0)
__version__ = '.'.join(map(str, __version_info__))
Loading