Skip to content

Commit 8321edd

Browse files
author
CosmoMatt
committed
perform general housekeeping, update versions to 1.0.0 for release
1 parent 7db8e14 commit 8321edd

15 files changed

+34
-26
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
cmake_minimum_required(VERSION 3.12)
1+
cmake_minimum_required(VERSION 3.15)
22
project(
33
flag
4-
VERSION "0.0.1"
4+
VERSION "1.0.0"
55
DESCRIPTION "Fast Fourier-Laguerre transform on the ball"
66
HOMEPAGE_URL "https://github.com/astro-informatics/flag"
77
LANGUAGES C)

conanfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
class FlagConan(ConanFile):
55
name = "flag"
6-
version = "0.0.1"
6+
version = "1.0.0"
77
license = "GPL-3"
8-
url = "https://github.com/astro-informatics/flag"
9-
homepage = "https://github.com/astro-informatics/flag"
8+
url = "https://github.com/astro-informatics/src_flag"
9+
homepage = "https://github.com/astro-informatics/src_flag"
1010
description = "Fast Fourier-Laguerre transform on the ball"
1111
settings = "os", "arch", "compiler", "build_type"
1212
topics = ("Physics", "Astrophysics", "Radio Interferometry")

include/flag_core.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// FLAG package
2-
// Copyright (C) 2012
3-
// Boris Leistedt & Jason McEwen
2+
// Copyright (C) 2021
3+
// Boris Leistedt & Jason McEwen & Matthew Price
44

55
#ifndef FLAG_CORE
66
#define FLAG_CORE

include/flag_sampling.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// FLAG package
2-
// Copyright (C) 2012
3-
// Boris Leistedt & Jason McEwen
2+
// Copyright (C) 2021
3+
// Boris Leistedt & Jason McEwen & Matthew Price
44

55
#ifndef FLAG_SAMPLING
66
#define FLAG_SAMPLING

include/flag_spherbessel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// FLAG package
2-
// Copyright (C) 2012
3-
// Boris Leistedt & Jason McEwen
2+
// Copyright (C) 2021
3+
// Boris Leistedt & Jason McEwen & Matthew Price
44

55
#ifndef FLAG_SPHERBESSEL
66
#define FLAG_SPHERBESSEL

include/flag_spherlaguerre.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// FLAG package
2+
// Copyright (C) 2021
3+
// Boris Leistedt & Jason McEwen & Matthew Price
14

25
#ifndef FLAG_SPHERLAGUERRE
36
#define FLAG_SPHERLAGUERRE

include/flag_types.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// FLAG package
2+
// Copyright (C) 2021
3+
// Boris Leistedt & Jason McEwen & Matthew Price
4+
15
#ifndef FLAG_TYPES
26
#define FLAG_TYPES
37

include/flag_version.in.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ inline const char *flag_info() {
88
" authors:\n"
99
" - Boris Leistedt\n"
1010
" - Jason McEwen\n"
11+
" - Matthew Price\n"
1112
" license: GPL-3\n"
12-
" url: https://github.com/astro-informatics/flag\n"
13+
" url: https://github.com/astro-informatics/src_flag\n"
1314
" version: @PROJECT_VERSION@\n";
1415
};
1516
// clang-format off

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.1
2+
current_version = 1.0.0
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<rc>\d+))?

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
description="Fast Fourier-Laguerre transform on the ball",
3131
long_description=long_description,
3232
long_description_content_type="text/x-rst",
33-
url="https://github.com/astro-informatics/flag",
33+
url="https://github.com/astro-informatics/src_flag",
3434
package_dir={"pyflag": "src/main/pyflag"},
3535
package_data={"pyflag": ["FLAG_Python_Documentation.rst"]},
3636
cmake_args=cmake_args,

0 commit comments

Comments
 (0)