Skip to content

Commit

Permalink
bumped version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saraedum committed Mar 11, 2022
1 parent 550b288 commit c6601df
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = '1.1.3' %}
{% set version = '1.2.0' %}
{% set build_number = '0' %}

package:
Expand Down
4 changes: 2 additions & 2 deletions rever.xsh
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ except KeyboardInterrupt:

sys.path.insert(0, 'tools/rever')

import dist
import autodist
import autopypi

$PROJECT = 'cppyythonizations'

$ACTIVITIES = [
'version_bump',
'changelog',
'dist',
'autodist',
'autopypi',
'tag',
'push_tag',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 2 additions & 2 deletions tools/rever/dist.xsh → tools/rever/autodist.xsh
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -43,4 +43,4 @@ class AutotoolsDist(Activity):
popd
return True

$DAG['dist'] = AutotoolsDist()
$DAG['autodist'] = AutotoolsDist()

0 comments on commit c6601df

Please sign in to comment.