Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
🔖(minor) bump howard release to 0.1.0
Browse files Browse the repository at this point in the history
Added:

- Draft realisation certificate issuer
  • Loading branch information
jmaupetit committed Mar 26, 2021
1 parent a3454c4 commit 9e125b7
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 2 deletions.
18 changes: 18 additions & 0 deletions src/howard/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Changelog

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.0.0/), and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.1.0-howard] - 2021-03-26

### Added

- Draft realisation certificate issuer

[unreleased]: https://github.com/openfun/marion/compare/v0.1.0-howard...master
[0.1.0-howard]: https://github.com/openfun/marion/compare/090add7...v0.1.0-howard
23 changes: 23 additions & 0 deletions src/howard/howard/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""Howard, FUN documents."""

import importlib.metadata
from pathlib import Path

from setuptools.config import read_configuration


def _get_version():
"""Get version from installed package with a fallback to the setup.cfg version
string.
"""

try:
return importlib.metadata.version("marion-howard")
except importlib.metadata.PackageNotFoundError:
return read_configuration(Path(__file__).parent / ".." / "setup.cfg")[
"metadata"
]["version"]


__version__ = _get_version()
4 changes: 2 additions & 2 deletions src/howard/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = marion-howard
version = 0.0.1
version = 0.1.0
description = FUN documents for Marion, the documents factory
long_description = file:README.md
long_description_content_type = text/markdown
Expand All @@ -22,7 +22,7 @@ classifiers =
[options]
include_package_data = True
install_requires =
marion==0.0.1
marion>=0.1.0
package_dir =
=.
packages = find:
Expand Down

0 comments on commit 9e125b7

Please sign in to comment.