Skip to content

Commit

Permalink
Version bump for release 1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
da4089 committed Sep 8, 2023
1 parent 1dcca98 commit 690c4f0
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@
Change Log
==========

v1.0.16
v1.0.16 (2023-09-08)
-------
* Add missing EXECTYPE constants
* Better conversion to string (#40)
* Better installation instructions (#45)
* Add testing for large (64 bit) integer values (#52)
* Fixed handling of IntEnum tag values (#56)
* Added testing for CPython 3.11 (Released: 2022-10-24)
* Dropped testing for Python 3.6 (EOL: 2021-12-31)

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

# General information about the project.
project = u'SimpleFIX'
copyright = u'2016-2022, David Arnold' # skipcq: PYL-W0622
copyright = u'2016-2023, David Arnold' # skipcq: PYL-W0622
author = u'David Arnold'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -56,7 +56,7 @@
# The short X.Y version.
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.15'
release = u'1.0.16'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
long_description = readme.read()

setup(name="simplefix",
version="1.0.15",
version="1.0.16",
description="Simple FIX Protocol implementation for Python",
long_description=long_description,
url="https://github.com/da4089/simplefix",
Expand Down
2 changes: 1 addition & 1 deletion simplefix/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
########################################################################
# SimpleFIX
# Copyright (C) 2016-2022, David Arnold.
# Copyright (C) 2016-2023, David Arnold.
#
# 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
2 changes: 1 addition & 1 deletion simplefix/data.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- python -*-
########################################################################
# SimpleFIX
# Copyright (C) 2017-2022, David Arnold.
# Copyright (C) 2017-2023, David Arnold.
#
# 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
2 changes: 1 addition & 1 deletion simplefix/errors.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
########################################################################
# SimpleFIX
# Copyright (C) 2018-2022, David Arnold.
# Copyright (C) 2018-2023, David Arnold.
#
# 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
2 changes: 1 addition & 1 deletion simplefix/parser.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /usr/bin/env python
########################################################################
# SimpleFIX
# Copyright (C) 2016-2022, David Arnold.
# Copyright (C) 2016-2023, David Arnold.
#
# 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

0 comments on commit 690c4f0

Please sign in to comment.