From c6601df8fe7e5c98e43b88f72062a02ac93a7045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20R=C3=BCth?= Date: Fri, 11 Mar 2022 14:15:17 -0600 Subject: [PATCH] bumped version to 1.2.0 --- configure.ac | 2 +- recipe/meta.yaml | 2 +- rever.xsh | 4 ++-- setup.py | 2 +- tools/rever/{dist.xsh => autodist.xsh} | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) rename tools/rever/{dist.xsh => autodist.xsh} (95%) diff --git a/configure.ac b/configure.ac index e50b910..6009539 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. dnl We need at least autoconf 2.69 for this configure.ac to work. AC_PREREQ([2.69]) -AC_INIT([cppyythonizations], [1.1.3], [julian.rueth@fsfe.org]) +AC_INIT([cppyythonizations], [1.2.0], [julian.rueth@fsfe.org]) AC_CONFIG_AUX_DIR([.]) AC_CONFIG_MACRO_DIR([m4]) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 31955e0..a029687 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = '1.1.3' %} +{% set version = '1.2.0' %} {% set build_number = '0' %} package: diff --git a/rever.xsh b/rever.xsh index e964938..64cd4f0 100644 --- a/rever.xsh +++ b/rever.xsh @@ -31,7 +31,7 @@ except KeyboardInterrupt: sys.path.insert(0, 'tools/rever') -import dist +import autodist import autopypi $PROJECT = 'cppyythonizations' @@ -39,7 +39,7 @@ $PROJECT = 'cppyythonizations' $ACTIVITIES = [ 'version_bump', 'changelog', - 'dist', + 'autodist', 'autopypi', 'tag', 'push_tag', diff --git a/setup.py b/setup.py index dd0a2f9..2f3634b 100644 --- a/setup.py +++ b/setup.py @@ -137,7 +137,7 @@ def run(self): name='cppyythonizations', author='Julian Rüth', author_email='julian.rueth@fsfe.org', - version='1.1.3', + version='1.2.0', url='https://github.com/flatsurf/cppyythonizations', packages=['cppyythonizations', 'cppyythonizations.pickling', 'cppyythonizations.util', 'cppyythonizations.operators', 'cppyythonizations.vector', 'cppyythonizations.tuple', 'cppyythonizations.printing', 'cppyythonizations.boost.type_erasure'], license='MIT', diff --git a/tools/rever/dist.xsh b/tools/rever/autodist.xsh similarity index 95% rename from tools/rever/dist.xsh rename to tools/rever/autodist.xsh index da642a9..fbd8037 100644 --- a/tools/rever/dist.xsh +++ b/tools/rever/autodist.xsh @@ -1,7 +1,7 @@ # ******************************************************************** # This file is part of cppyythonizations. # -# Copyright (C) 2020 Julian Rüth +# Copyright (C) 2020-2022 Julian Rüth # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -43,4 +43,4 @@ class AutotoolsDist(Activity): popd return True -$DAG['dist'] = AutotoolsDist() +$DAG['autodist'] = AutotoolsDist()