Skip to content

Commit aba54c4

Browse files
Lars AsplundLarsAsplund
authored andcommitted
Updated version number and fixed lint issues.
1 parent 55f25d9 commit aba54c4

8 files changed

Lines changed: 11 additions & 10 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
# You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
5+
# Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
66

77
from setuptools import setup
88
import os
@@ -30,7 +30,7 @@ def find_all_files(directory, endings=None):
3030

3131
setup(
3232
name='vunit_hdl',
33-
version='0.50.0',
33+
version='0.50.1',
3434
packages=['vunit',
3535
'vunit.com',
3636
'vunit.test',

vunit/com/codec_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
# You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
5+
# Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
66

77
"""
88
Module for generating VHDL com codecs.

vunit/vhdl/com/run.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
33
# You can obtain one at http://mozilla.org/MPL/2.0/.
44
#
5-
# Copyright (c) 2014-2015, Lars Asplund lars.anders.asplund@gmail.com
5+
# Copyright (c) 2014-2016, Lars Asplund lars.anders.asplund@gmail.com
66

77
from os.path import join, dirname
88
from vunit import VUnit
@@ -14,5 +14,6 @@
1414
tb_com_lib = ui.add_library("tb_com_lib")
1515
tb_com_lib.add_source_files(join(root, 'test', '*.vhd'))
1616
pkg = tb_com_lib.package('custom_types_pkg')
17-
pkg.generate_codecs(codec_package_name='custom_codec_pkg', used_packages=['ieee.std_logic_1164', 'constants_pkg', 'tb_com_lib.more_constants_pkg'])
17+
pkg.generate_codecs(codec_package_name='custom_codec_pkg', used_packages=['ieee.std_logic_1164', 'constants_pkg',
18+
'tb_com_lib.more_constants_pkg'])
1819
ui.main()

vunit/vhdl/com/src/com_string.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
1111
-- You can obtain one at http://mozilla.org/MPL/2.0/.
1212
--
13-
-- Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
13+
-- Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
1414
library ieee;
1515
use ieee.std_logic_1164.all;
1616
use ieee.math_complex.all;

vunit/vhdl/com/test/constants.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
55
-- You can obtain one at http://mozilla.org/MPL/2.0/.
66
--
7-
-- Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
7+
-- Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
88

99
package constants_pkg is
1010
constant byte_msb_c : natural := 7;

vunit/vhdl/com/test/custom_types.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
55
-- You can obtain one at http://mozilla.org/MPL/2.0/.
66
--
7-
-- Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
7+
-- Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
88

99
library vunit_lib;
1010
context vunit_lib.vunit_context;

vunit/vhdl/com/test/more_constants.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
55
-- You can obtain one at http://mozilla.org/MPL/2.0/.
66
--
7-
-- Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
7+
-- Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
88

99
package more_constants_pkg is
1010
constant byte_lsb_c : natural := 0;

vunit/vhdl/com/test/tb_com_codec.vhd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-- License, v. 2.0. If a copy of the MPL was not distributed with this file,
55
-- You can obtain one at http://mozilla.org/MPL/2.0/.
66
--
7-
-- Copyright (c) 2015, Lars Asplund lars.anders.asplund@gmail.com
7+
-- Copyright (c) 2015-2016, Lars Asplund lars.anders.asplund@gmail.com
88

99
library vunit_lib;
1010
context vunit_lib.vunit_context;

0 commit comments

Comments
 (0)