Skip to content

Commit

Permalink
Updated the copyright year to 2013.
Browse files Browse the repository at this point in the history
Removed the -*- coding: Latin-1 -*- string from all python files.
Added a note to Danjel McGougan's Universal Crc.
  • Loading branch information
tpircher-zz committed Jan 4, 2013
1 parent 4766ec0 commit 87e63fc
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2006-2012, Thomas Pircher <tehpeh@gmx.net>
Copyright (c) 2006-2013, Thomas Pircher <tehpeh@gmx.net>

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
15 changes: 13 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
#
# Version 0.7.12, 2012-xx-xx
# Version 0.7.12, 2013-xx-xx
#

2013-01-01 Thomas Pircher <tehpeh@gmx.net>

* all *.py files:
Removed the -*- coding: Latin-1 -*- string.
Updated the copyright year to 2013.

* COPYING:
Updated the copyright year to 2013.

2012-11-25 Thomas Pircher <tehpeh@gmx.net>

* crc_opt.py:
Expand All @@ -24,7 +33,7 @@

* README.md:
Added a note to README.md that version 0.7.10 of pycrc is the last one
known to work with Python 2.x.
known to work with Python 2.4.

* doc/pycrc.xml:
Updated a link to the list of CRC models.
Expand Down Expand Up @@ -174,6 +183,8 @@
* crc_symtable.py:
C/C++ code can now be generated for the table-driven algorithm with widths
that are not byte-ligned or less than 8.
This feature was heavily inspired by a similar feature in Danjel McGougan's
Universal Crc (http://mcgougan.se/universal_crc/).

W A R N I N G: introduced new variable crc_shift, member of the crc_cfg_t
structure, that must be initialised manually when the width
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ System Requirements
===================

pycrc requires Python 2.6 or later. Python 3.x is supported.
The last version compatible with Python 2.x is pycrc v0.7.10.
The last version compatible with Python 2.4 is pycrc v0.7.10.



Expand Down
4 changes: 1 addition & 3 deletions crc_algorithms.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
4 changes: 1 addition & 3 deletions crc_lexer.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
4 changes: 1 addition & 3 deletions crc_models.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
4 changes: 1 addition & 3 deletions crc_opt.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
4 changes: 1 addition & 3 deletions crc_parser.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
4 changes: 1 addition & 3 deletions crc_symtable.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down
3 changes: 1 addition & 2 deletions pycrc.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env python
# -*- coding: Latin-1 -*-

# pycrc -- parameterisable CRC calculation utility and C source code generator
#
# Copyright (c) 2006-2012 Thomas Pircher <tehpeh@gmx.net>
# Copyright (c) 2006-2013 Thomas Pircher <tehpeh@gmx.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
Expand Down

0 comments on commit 87e63fc

Please sign in to comment.