Skip to content

Commit b3eca3a

Browse files
committed
Update README
1 parent 4958386 commit b3eca3a

File tree

2 files changed

+16
-12
lines changed

2 files changed

+16
-12
lines changed

README.rst

+15-11
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@ AUTOSAR
33

44
A set of Python modules for working with `AUTOSAR <https://www.autosar.org/>`_ XML files.
55

6-
* Allows individuals and teams to incrementally develop and maintain AUTOSAR models using Python code.
6+
* Allows individuals and teams to incrementally develop and maintain AUTOSAR SWC models using Python code.
77
* Executing a Python script can quickly regenerate the same ARXML file(s) (no real need to store generated ARXML files in version control).
88

99
It is recommended that you use a commercial AUTOSAR toolchain to integrate generated SWCs into your ECU.
1010

11+
AUTOSAR version support
12+
-----------------------
13+
14+
* AUTOSAR 3.0
15+
* AUTOSAR 4.2
16+
17+
The intent is to add support for AUTOSAR 4.3 and 4.4 in the future. Timeplan is unclear since I do most of the work in my spare time.
18+
1119
Prerequisites
1220
-------------
1321

@@ -19,25 +27,21 @@ Documentation
1927

2028
Documentation is published `here <https://autosar.readthedocs.io/en/latest/>`_.
2129

22-
Current Roadmap
30+
Latest Release
2331
---------------
2432

25-
v0.3.9
26-
~~~~~~
27-
28-
* Fixes
29-
* Improved (AUTOSAR4) documentation
30-
* More comprehensive suite of unit tests
33+
Latest release is v0.3.9.
3134

35+
Current Roadmap
36+
---------------
3237

3338
v0.4.0
3439
~~~~~~
3540

36-
* Maintenance track (stable version of v0.3.x)
37-
* v0.4.x will be the last release to support RTE generator for AUTOSAR3
41+
* Maintenance track (Relabel v0.3.9 if no issues are found)
3842

3943
v0.5.0
4044
~~~~~~
4145

42-
* Complete rewrite of RTE generator (upgrade to AUTOSAR4)
46+
* Complete rewrite of RTE contract phase generator (upgrade to AUTOSAR4)
4347
* At the same time upgrade the `autosar-demo project <https://github.com/cogu/autosar-demo>`_ to AUTOSAR4

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ def readme():
2323
'cfile>=0.1.4',
2424
],
2525
packages=['autosar','autosar.parser','autosar.writer','autosar.rte', 'autosar.bsw', 'autosar.util'],
26-
dependency_links=['https://github.com/cogu/cfile/archive/v0.1.4.tar.gz#egg=cfile-0.1.4'],
26+
dependency_links=['https://github.com/cogu/cfile/archive/v0.1.5.tar.gz#egg=cfile-0.1.5'],
2727
zip_safe=False,
2828
test_suite='tests.my_test_suite')

0 commit comments

Comments
 (0)