Skip to content

Commit 96fb227

Browse files
committed
Change version to v0.4.2
1 parent 642e5e2 commit 96fb227

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ A set of Python modules for working with [AUTOSAR](https://www.autosar.org/) XML
55
The primary use case is to enable Python to generate ARXML files for further importing into other (commercial) AUTOSAR toolchains.
66
It has some support for parsing ARXML files.
77

8-
This is the maintenance branch for v0.4. Latest release is [v0.4.1](https://github.com/cogu/autosar/releases/tag/v0.4.1).
8+
This is the maintenance branch for v0.4. Latest release is [v0.4.2](https://github.com/cogu/autosar/releases/tag/v0.4.2).
99

1010
## Documentation
1111

doc/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = '0.4'
6262
# The full version, including alpha/beta/rc tags.
63-
release = '0.4.1'
63+
release = '0.4.2'
6464

6565
# The language for content autogenerated by Sphinx. Refer to documentation
6666
# for a list of supported languages.
@@ -113,10 +113,10 @@
113113
#
114114
# This is required for the alabaster theme
115115
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
116-
html_sidebars = {
116+
html_sidebars = {
117117
# '**': ['about.html', 'globaltoc.html', 'searchbox.html']
118118
#['about.html','navigation.html','relations.html', 'searchbox.html'],
119-
119+
120120
}
121121

122122
html_css_files = [

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ def readme():
66
return f.read()
77

88
setup(name='autosar',
9-
version='0.4.1',
9+
version='0.4.2',
1010
description='A set of Python modules for working with AUTOSAR XML files',
1111
long_description=readme(),
1212
long_description_content_type='text/x-rst',
@@ -24,7 +24,7 @@ def readme():
2424
author_email='congus8@gmail.com',
2525
license='MIT',
2626
install_requires=[
27-
'cfile>=0.1.4',
27+
'cfile==0.2.0',
2828
],
2929
packages=['autosar','autosar.parser','autosar.writer','autosar.rte', 'autosar.bsw', 'autosar.util'],
3030
zip_safe=False,

0 commit comments

Comments
 (0)