Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ body:
label: Drux version
description: Which version of Drux are you using?
options:
- Drux 0.4
- Drux 0.3
- Drux 0.2
- Drux 0.1
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.4] - 2026-05-18
### Added
- Hopfenberg model
## [0.3] - 2025-12-08
Expand All @@ -30,7 +31,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Higuchi model


[Unreleased]: https://github.com/openscilab/drux/compare/v0.3...dev
[Unreleased]: https://github.com/openscilab/drux/compare/v0.4...dev
[0.4]: https://github.com/openscilab/drux/compare/v0.3...v0.4
[0.3]: https://github.com/openscilab/drux/compare/v0.2...v0.3
[0.2]: https://github.com/openscilab/drux/compare/v0.1...v0.2
[0.1]: https://github.com/openscilab/drux/compare/48548f0...v0.1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ Drux is a Python-based framework for simulating drug release profiles using math

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install drux==0.3`
- Run `pip install drux==0.4`
### Source code
- Download [Version 0.3](https://github.com/openscilab/drux/archive/v0.3.zip) or [Latest Source](https://github.com/openscilab/drux/archive/dev.zip)
- Download [Version 0.4](https://github.com/openscilab/drux/archive/v0.4.zip) or [Latest Source](https://github.com/openscilab/drux/archive/dev.zip)
- Run `pip install .`

## Supported Models
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.3 | :white_check_mark: |
| < 0.3 | :x: |
| 0.4 | :white_check_mark: |
| < 0.4 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion drux/params.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-
"""Drux parameters and constants."""

DRUX_VERSION = "0.3"
DRUX_VERSION = "0.4"
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "drux" %}
{% set version = "0.3" %}
{% set version = "0.4" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
DRUX_VERSION = "0.3"
DRUX_VERSION = "0.4"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ def read_description() -> str:
name='drux',
packages=[
'drux', ],
version='0.3',
version='0.4',
description='Drux: Drug Release Analysis Framework',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Drux Development Team',
author_email='drux@openscilab.com',
url='https://github.com/openscilab/drux',
download_url='https://github.com/openscilab/drux/tarball/v0.3',
download_url='https://github.com/openscilab/drux/tarball/v0.4',
keywords="drug-release drug-delivery mathematical-modeling simulation kinetics",
project_urls={
'Source': 'https://github.com/openscilab/drux',
Expand Down
Loading