Skip to content

Commit d613a50

Browse files
authored
Release v0.7 (aaruni96#62)
1 parent 8a1fb05 commit d613a50

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project tries to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Upcoming]
8+
## [0.7]
99

1010
### Added
1111
- Bugfix: Added `--gui` option to package mode.
@@ -18,8 +18,6 @@ and this project tries to adhere to [Semantic Versioning](https://semver.org/spe
1818
- Bugfix: Gracefully handle a repository not providing date information instead of crashing
1919
- Bugfix: Handle the case when XDG_SESSION_TYPE is not set
2020

21-
### Removed
22-
2321
## [0.6]
2422

2523
### Added

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MaPS - MaRDI Packaging System
22

3-
![](https://img.shields.io/badge/version-0.7--dev-blue)
3+
![](https://img.shields.io/badge/version-0.7-blue)
44

55
## Introduction
66

pkg/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Aaruni Kaushik <[email protected]>
22
_name=maps
33
pkgname=maps
4-
pkgver=0.6
4+
pkgver=0.7
55
pkgrel=1
66
pkgdesc="Sandboxing tool for Mathematical Research Software"
77
arch=('x86_64')

pkg/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
maps (0.7-1) UNRELEASED; urgency=medium
2+
3+
* Update to v0.7
4+
5+
-- Aaruni Kaushik <[email protected]> Mon, 25 Aug 2025 22:16:36 +0200
6+
17
maps (0.6-1) UNRELEASED; urgency=medium
28

39
* Update to v0.6

pkg/rpm/maps.spec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: maps
2-
Version: 0.6
2+
Version: 0.7
33
Release: 1%{?dist}
44
Summary: Mathematical Packaging System
55
BuildArch: noarch
@@ -38,6 +38,9 @@ xdg-mime default maps.desktop x-scheme-handler/maps
3838

3939
%changelog
4040

41+
* Mon Aug 25 2025 Aaruni Kaushik <[email protected]> 0.7.0.1
42+
- Update to version 0.7
43+
4144
* Sat Jul 26 2025 Aaruni Kaushik <[email protected]> 0.6.0.1
4245
- Update to version 0.6
4346

src/maps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ from progress.bar import Bar
2626
gi.require_version("OSTree", "1.0")
2727
from gi.repository import OSTree, GLib
2828

29-
VERSION = '0.7-dev'
29+
VERSION = '0.7'
3030
BWRAP_DEFAULT = f"{os.getenv('HOME')}/.var/org.mardi.maps/deps/bubblewrap/_builddir/bwrap"
3131
if os.getenv('BWRAP_CMD') is not None:
3232
BWRAP = str(os.getenv('BWRAP_CMD'))

0 commit comments

Comments
 (0)