Skip to content

Commit

Permalink
Release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
aaruni96 committed Nov 17, 2024
1 parent d19728e commit e18f650
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project tries to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Upcoming]
## [0.3] - 2024-11-17

### Added
- Include sysfs in the runtime as read-only
Expand Down
3 changes: 1 addition & 2 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MaPS - MaRDI Packaging System

![](https://img.shields.io/badge/version-0.3--dev-blue)
![](https://img.shields.io/badge/version-0.3-blue)

## Introduction

Expand Down Expand Up @@ -92,4 +92,3 @@ All code must conform to these settings of pylint and flake8 (enforced by CI):
pylint -d C0413,C0103,R0912,R0915,W0603 src/maps
flake8 --max-line-length 100 --ignore=E402 src/maps
```

1 change: 1 addition & 0 deletions pkg/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ depends=('base-devel'
'meson'
'python-tomli'
'python-gobject'
'python-progress'
# deps for tuspy
'python-aiohappyeyeballs'
'python-aiohttp'
Expand Down
9 changes: 6 additions & 3 deletions pkg/rpm/maps.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: maps
Version: 0.2.0.1
Version: 0.3.0.1
Release: 1%{?dist}
Summary: Mathematical Packaging System
BuildArch: noarch
Expand All @@ -8,7 +8,7 @@ License: GPL3
URL: https://github.com/mardi4NFDI/maps
Source0: %{name}-%{version}.tar.gz

Requires: git cairo-devel gcc python3-devel gobject-introspection-devel ostree-devel fuse-overlayfs libcap-devel autoconf cairo-gobject-devel bash-completion python-tomli meson
Requires: git cairo-devel gcc python3-devel gobject-introspection-devel ostree-devel python3-progress libcap-devel autoconf cairo-gobject-devel bash-completion python-tomli meson #python3-tuspy

%description
MaPS helps mathematicians create and publish software runtimes, as well as deploy and run software inside published runtimes
Expand All @@ -33,7 +33,10 @@ cp src/completion.bash $RPM_BUILD_ROOT/%{_datadir}/bash-completion/completions/%

%changelog

* Fru Jun 21 2024 Aaruni Kaushik <[email protected]> 0.2.0.1
* Sun Nov 17 2024 Aaruni Kaushik <[email protected]> 0.3.0.1
- Update to version 0.3

* Fri Jun 21 2024 Aaruni Kaushik <[email protected]> 0.2.0.1
- Update to version 0.2

* Mon Feb 12 2024 Aaruni Kaushk <[email protected]> 0.1.0.2
Expand Down
2 changes: 1 addition & 1 deletion src/maps
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ from tusclient.storage import filestorage
gi.require_version("OSTree", "1.0")
from gi.repository import OSTree, GLib

VERSION = '0.3-dev'
VERSION = '0.3'
BWRAP_DEFAULT = f"{os.getenv('HOME')}/.var/org.mardi.maps/deps/bubblewrap/_builddir/bwrap"
if os.getenv('BWRAP_CMD') is not None:
BWRAP = str(os.getenv('BWRAP_CMD'))
Expand Down

0 comments on commit e18f650

Please sign in to comment.