Skip to content

Commit

Permalink
Bump minor version number and copyright dates
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelcmartin committed Mar 23, 2014
1 parent 3f13609 commit 42f01f7
Show file tree
Hide file tree
Showing 16 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion doc/ophismanual.sgm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<bookinfo>
<title>Programming with Ophis</title>
<author><firstname>Michael</firstname><surname>Martin</surname></author>
<copyright><year>2006-2012</year><holder>Michael Martin</holder></copyright>
<copyright><year>2006-2014</year><holder>Michael Martin</holder></copyright>
</bookinfo>
&pre1;
<part label="I">
Expand Down
4 changes: 2 additions & 2 deletions src/Ophis/CmdLine.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import optparse

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down Expand Up @@ -35,7 +35,7 @@ def parse_args(raw_args):

parser = optparse.OptionParser(
usage="Usage: %prog [options] srcfile [srcfile ...]",
version="Ophis 6502 cross-assembler, version 2.0")
version="Ophis 6502 cross-assembler, version 2.1")

parser.add_option("-o", default=None, dest="outfile",
help="Output filename (default 'ophis.bin')")
Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/CorePragmas.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Provides the core assembler directives."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Implements the symbol lookup, through nested environments -
any non-temporary variable is stored at the top level."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Keeps track of the number of errors inflicted so far, and
where in the assembly the errors are occurring."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import os
import os.path

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/IR.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Classes for representing the Intermediate nodes upon which the
assembler passes operate."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Listing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
traditional to mix binary with reconstructed instructions that
have all arguments precomputed. This class manages that."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Macro.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set via .alias commands and prevented from escaping
with .scope and .scend commands."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
When invoked as main, interprets its command line and goes from there.
Otherwise, use run_ophis(cmdline-list) to use it inside a script."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Opcodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Tables for the assembly of 6502-family instructions, mapping
opcodes and addressing modes to binary instructions."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/Passes.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
very extensible; additional analyses or optimizations may be
added as new subclasses of Pass."""

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.

Expand Down
2 changes: 1 addition & 1 deletion src/Ophis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"Ophis - a cross-assembler for the 6502 series of chips"

# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.
2 changes: 1 addition & 1 deletion src/scripts/ophis.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "Ophis"
!define PRODUCT_VERSION "2.0"
!define PRODUCT_VERSION "2.1"
!define PRODUCT_PUBLISHER "Michael Martin"
!define PRODUCT_WEB_SITE "https://michaelcmartin.github.com/Ophis"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\ophis.exe"
Expand Down
2 changes: 1 addition & 1 deletion src/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from distutils.core import setup
setup(name='Ophis',
version='2.0',
version='2.1',
description='A cross-assembler for the 6502 series of processors',
url='https://github.com/michaelcmartin/Ophis',
author="Michael Martin",
Expand Down
2 changes: 1 addition & 1 deletion src/tools/opcodes/gensets.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Tables for the assembly of 6502-family instructions, mapping
opcodes and addressing modes to binary instructions.""" + '"""' + """
# Copyright 2002-2012 Michael C. Martin and additional contributors.
# Copyright 2002-2014 Michael C. Martin and additional contributors.
# You may use, modify, and distribute this file under the MIT
# license: See README for details.
Expand Down

0 comments on commit 42f01f7

Please sign in to comment.