Skip to content

Commit

Permalink
Bump to version 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lsegal committed Sep 6, 2010
1 parent 1872fc7 commit dce93ab
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 5 deletions.
93 changes: 93 additions & 0 deletions ChangeLog
@@ -1,5 +1,98 @@
2010-09-06 Loren Segal <lsegal@soen.ca>

* ChangeLog, README.md, lib/yard.rb, yard.gemspec: Bump to version 0.6.1

* templates/default/fulldoc/html/js/app.js: Fix TOC id links to include some
punctuation and digits

* spec/code_objects/base_spec.rb: Add spec for relative_path

* templates/default/fulldoc/html/css/style.css,
templates/default/fulldoc/html/js/app.js: Refactor inheritance arrow and
inheritance box display code

* lib/yard/code_objects/base.rb, spec/code_objects/base_spec.rb: Fix relative
path linking with common substrings

* lib/yard/tags/default_factory.rb: Gracefully error out if @example tag is
misformatted

2010-09-03 Loren Segal <lsegal@soen.ca>

* spec/templates/helpers/html_helper_spec.rb: Fix broken spec of #link_object

2010-09-03 Arthur Schreiber <schreiber.arthur@gmail.com>

* spec/registry_store_spec.rb: Update specs to match reading marshal data as
binary.

2010-09-02 Loren Segal <lsegal@soen.ca>

* lib/yard/parser/source_parser.rb: Fix printing of debugging information
when displaying parser paths in 1.8.x

2010-09-02 Arthur Schreiber <schreiber.arthur@gmail.com>

* lib/yard/registry_store.rb: Fix remaining cases where Marshal data was not
read as binary.

2010-09-02 Loren Segal <lsegal@soen.ca>

* lib/yard/code_objects/base.rb, spec/code_objects/base_spec.rb: Fix matching
of common namespace in Base#relative_path

2010-09-01 Loren Segal <lsegal@soen.ca>

* templates/default/fulldoc/html/css/full_list.css,
templates/default/fulldoc/html/js/full_list.js: Improve inline JS search
responsiveness on large lists

2010-09-01 Arthur Schreiber <schreiber.arthur@gmail.com>

* lib/yard/serializers/yardoc_serializer.rb, spec/registry_store_spec.rb: Fix
#168 - open files with serialized contents in binary mode.

2010-09-01 Loren Segal <lsegal@soen.ca>

* lib/yard/code_objects/base.rb, spec/code_objects/base_spec.rb,
spec/templates/helpers/html_helper_spec.rb: Fix
CodeObjects::Base#relative_path to work with parent namespaces and methods in
sibling namespaces

* lib/yard/code_objects/proxy.rb: Fix proxy implementation of name to match
Base#name

2010-08-31 Loren Segal <lsegal@soen.ca>

* lib/yard/registry.rb, lib/yard/server/commands/search_command.rb: Avoid
exception when Registry.at(nil) is accessed (for search command)

* lib/yard/server/rack_adapter.rb: Print startup message for `yard server` if
Mongrel is being used

* lib/yard/server/rack_adapter.rb: Remove trap(INT) and server.shutdown, Rack
does this on its own. Closes gh-165

* lib/yard/core_ext/string.rb, spec/core_ext/string_spec.rb,
spec/spec_helper.rb: Removed String#underscore and String#camelcase. These
methods were not being used in YARD's codebase (minus a few small utility
functions) and they were causing incompatibility issues with other frameworks
like Rails. Closes gh-167

2010-08-30 Loren Segal <lsegal@soen.ca>

* templates/default/fulldoc/html/css/style.css: Put class list above ToC
(take 2) Closes gh-164

2010-08-29 Loren Segal <lsegal@soen.ca> 2010-08-29 Loren Segal <lsegal@soen.ca>


* templates/default/fulldoc/html/css/style.css: Lower z-index so class list
shows up above

* yard.gemspec: Update release date in gemspec

* ChangeLog: Update ChangeLog

* templates/default/fulldoc/html/css/style.css: Fix positioning for TOC * templates/default/fulldoc/html/css/style.css: Fix positioning for TOC


* lib/yard/templates/helpers/html_helper.rb: Fix encoding issue where * lib/yard/templates/helpers/html_helper.rb: Fix encoding issue where
Expand Down
15 changes: 12 additions & 3 deletions README.md
Expand Up @@ -8,8 +8,8 @@ YARD: Yay! A Ruby Documentation Tool
**Contributors**: See Contributors section below **Contributors**: See Contributors section below
**Copyright**: 2007-2010 **Copyright**: 2007-2010
**License**: MIT License **License**: MIT License
**Latest Version**: 0.6.0 (codename "The Cubic") **Latest Version**: 0.6.1 (codename "The Cubic")
**Release Date**: August 29th 2010 **Release Date**: September 6th 2010


Synopsis Synopsis
-------- --------
Expand Down Expand Up @@ -288,7 +288,16 @@ More options can be seen by typing `yard-graph --help`, but here is an example:
Changelog Changelog
--------- ---------


- **August.28.10**: 0.6.0 release - **September.06.10**: 0.6.1 release
- Fixed TOC showing on top of class/method list in no-frames view
- A message now displays when running `yard server` with Rack/Mongrel installed
- Improved performance of JS inline search for large class/method lists
- Improved link titles for relative object links
- Removed `String#camelcase` and `String#underscore` for better Rails compat.
- Fixed support for loading .yardoc files under Windows
- Fixed inheritance tree arrows not displaying in certain environments

- **August.29.10**: 0.6.0 release
- Added dynamic local documentation server - Added dynamic local documentation server
- Added @group/@endgroup declarations to organize methods into groups - Added @group/@endgroup declarations to organize methods into groups
- Added `yard` executable to serve as main CLI tool with pluggable commands - Added `yard` executable to serve as main CLI tool with pluggable commands
Expand Down
2 changes: 1 addition & 1 deletion lib/yard.rb
@@ -1,5 +1,5 @@
module YARD module YARD
VERSION = "0.6.0" VERSION = "0.6.1"


# The root path for YARD source libraries # The root path for YARD source libraries
ROOT = File.expand_path(File.dirname(__FILE__)) ROOT = File.expand_path(File.dirname(__FILE__))
Expand Down
2 changes: 1 addition & 1 deletion yard.gemspec
Expand Up @@ -9,7 +9,7 @@ SPEC = Gem::Specification.new do |s|
custom Ruby constructs such as custom class level definitions. custom Ruby constructs such as custom class level definitions.
eof eof
s.version = YARD::VERSION s.version = YARD::VERSION
s.date = "2010-08-29" s.date = "2010-09-06"
s.author = "Loren Segal" s.author = "Loren Segal"
s.email = "lsegal@soen.ca" s.email = "lsegal@soen.ca"
s.homepage = "http://yardoc.org" s.homepage = "http://yardoc.org"
Expand Down

0 comments on commit dce93ab

Please sign in to comment.