Skip to content

Commit

Permalink
changed version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlando Hill committed Aug 15, 2010
1 parent 53b275a commit 6e9ca33
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 44 deletions.
2 changes: 1 addition & 1 deletion build/ant.xml
Expand Up @@ -37,7 +37,7 @@ SOFTWARE.
<!-- Project properties -->
<property name="project.name" value="waxeye" />
<property name="project.title" value="Waxeye Parser Generator" />
<property name="project.version" value="0.7.0" />
<property name="project.version" value="0.8.0" />

<!-- Import environment variables -->
<property environment="env" />
Expand Down
6 changes: 6 additions & 0 deletions docs/NEWS
@@ -1,6 +1,12 @@
Waxeye News
===========

0.8.0 - 2010/08/15
------------------

* Added Javascript language target


0.7.0 - 2008/11/23
------------------

Expand Down
42 changes: 4 additions & 38 deletions docs/book/book
@@ -1,12 +1,12 @@
Language Development with Waxeye
================================
Orlando D._A._R. Hill
v0.7.0, November 2008
Orlando Hill
v0.8.0, August 2010


http://waxeye.org/[Waxeye Parser Generator]

Copyright (C) 2008 Orlando D. A. R. Hill
Copyright (C) 2010 Orlando Hill

Permission is granted to copy, distribute and/or modify this document under the
terms of the GNU Free Documentation License, Version 1.2 or any later version
Expand All @@ -30,14 +30,6 @@ common to use a use parser generator to do the grunt work of constructing the
parser. This is where Waxeye comes in handy.


//////////////////////////////////////////////
Who is Waxeye for?
Why do we want a parser generator?
When do we want to parse?
Examples of when you would want to use Waxeye.
//////////////////////////////////////////////



== Getting Started ==

Expand Down Expand Up @@ -1726,6 +1718,7 @@ Currently supported programming languages:

* c
* java
* javascript
* python
* ruby
* scheme
Expand Down Expand Up @@ -1901,33 +1894,6 @@ TODO



///////////////////////////////////////////////////////////////////////////////
== Having Trouble? ==

This chapter will help you when you get stuck. It has solutions to common
problems and tells you how to get help, online, if you are still having
trouble.

=== Common Pitfalls ===

TODO


=== Community Support ===

TODO


== Future Improvements ===

This chapter talks about some of the upcoming features that will make using
Waxeye even more fun.


///////////////////////////////////////////////////////////////////////////////



== GNU Free Documentation License ==

...............................................................................
Expand Down
4 changes: 2 additions & 2 deletions src/python/setup.py
Expand Up @@ -22,10 +22,10 @@

from distutils.core import setup

setup(author='Orlando D. A. R. Hill',
setup(author='Orlando Hill',
author_email='orlandodarhill Gmail.com',
name='waxeye',
version='0.7.0',
version='0.8.0',
url='http://waxeye.org',
description='Python runtime for the Waxeye Parser Generator',
py_modules=['waxeye']
Expand Down
4 changes: 2 additions & 2 deletions src/ruby/gem.gemspec
Expand Up @@ -24,10 +24,10 @@ require 'rubygems'
require 'rake'

spec = Gem::Specification.new do |s|
s.author = 'Orlando D. A. R. Hill'
s.author = 'Orlando Hill'
s.email = 'orlandodarhill Gmail.com'
s.name = 'waxeye'
s.version = '0.7.0'
s.version = '0.8.0'
s.homepage = 'http://waxeye.org'
s.summary = 'Ruby runtime for the Waxeye Parser Generator'
s.rubyforge_project = 'waxeye'
Expand Down
2 changes: 1 addition & 1 deletion src/waxeye/version.scm
Expand Up @@ -27,6 +27,6 @@ mzscheme

(provide *version*)

(define *version* "0.7.0")
(define *version* "0.8.0")

)

0 comments on commit 6e9ca33

Please sign in to comment.