Skip to content

Commit

Permalink
* Added plugin support
Browse files Browse the repository at this point in the history
* More obvious theme integration (thanks to oh-my-zsh)
* Fixed various bugs
  • Loading branch information
Chris Blackburn committed Mar 7, 2012
1 parent bdc03d4 commit 1ed1c37
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,2 +1,2 @@
.DS_Store
project.tmproj
project.tmproj
6 changes: 6 additions & 0 deletions CHANGELOG
@@ -1,3 +1,9 @@
*0.3.0* (March 7, 2011)

* Added plugin support
* More obvious theme integration (thanks to oh-my-zsh)
* Fixed various bugs

*0.2.3* (October 28, 2011)

* Added some useful scripts for OSX
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# .env

**Version: 0.2.3**
**Version: 0.3.0**

.env (Dot-Env) is a comprehensive, cascading Bash environment system. It provides Bash shell-prompt themes, handy functions, aliases, and tools for the Bash power user. Plugins have recently been introduced plugins for extensibility.

Expand Down
6 changes: 3 additions & 3 deletions Rakefile
Expand Up @@ -18,8 +18,8 @@ task :bump_patch do
patch = patch.to_i + 1
write_version([major, minor, patch])
version = open('VERSION').read.chomp
readme = open('README.markdown').read
File.open('README.markdown', 'w') {|f| f.write(readme.gsub(/^\*\*Version: [0-9\.]+\*\*$/, "**Version: #{version}**")) }
readme = open('README.md').read
File.open('README.md', 'w') {|f| f.write(readme.gsub(/^\*\*Version: [0-9\.]+\*\*$/, "**Version: #{version}**")) }
Rake::Task["changes"].invoke
end
desc "Alias for :bump_patch"
Expand Down Expand Up @@ -68,7 +68,7 @@ private
# read current changelog
old = File.readlines("#{PROJECT_ROOT}/CHANGELOG").to_s.chomp
text_array.push(old)
File.open("#{PROJECT_ROOT}/CHANGELOG", 'w') do |f|
File.open("#{PROJECT_ROOT}/CHANGELOG", 'w') do |f|
text_array.each do |line|
f.puts(line)
end
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.2.3
0.3.0
1 change: 1 addition & 0 deletions host/.gitignore
@@ -0,0 +1 @@
*/

0 comments on commit 1ed1c37

Please sign in to comment.