Skip to content

Commit 7cc7f65

Browse files
authored
#15 Merge pull request from fmlo-dev/astropenguin/issue14
Release v0.3.0
2 parents 8147618 + 4d9b5fc commit 7cc7f65

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ name: Tests
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
pull_request:
88
branches:
9-
- master
9+
- main
1010

1111
jobs:
1212
job:

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ message: "If you use this software, please cite it as below."
33

44
title: "fmflow"
55
abstract: "Data analysis package for FMLO"
6-
version: 0.2.7
7-
date-released: 2019-09-18
6+
version: 0.3.0
7+
date-released: 2022-09-09
88
license: "MIT"
99
doi: "10.5281/zenodo.3433962"
1010
url: "https://github.com/fmlo-dev/fmflow"

fmflow/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# coding: utf-8
22

3-
__version__ = "0.2.7"
3+
__version__ = "0.3.0"
44
__author__ = "Akio Taniguchi"
55

66
from . import utils

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fmflow"
3-
version = "0.2.7"
3+
version = "0.3.0"
44
description = "Data analysis package for FMLO"
55
authors = ["Akio Taniguchi <taniguchi@a.phys.nagoya-u.ac.jp>"]
66
keywords = ["astronomy", "radio-astronomy", "data-analysis", "fmlo"]

tests/test_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
def test_version():
55
"""Make sure the version is valid."""
6-
assert fm.__version__ == "0.2.7"
6+
assert fm.__version__ == "0.3.0"
77

88

99
def test_author():

0 commit comments

Comments
 (0)