Skip to content

Commit

Permalink
Update to 0.10.0 (#657)
Browse files Browse the repository at this point in the history
* Update changelog for 0.10.0

* Multi-user systems

* Minor fixes

* Update changelog.markdown
  • Loading branch information
genotrance authored and dom96 committed May 27, 2019
1 parent a4eaa5d commit 06b9b49
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 2 deletions.
33 changes: 33 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,39 @@

# Nimble changelog

## 0.10.0 - 27/05/2019

Nimble now uses the Nim compiler directly via `nim e` to execute nimble
scripts rather than embedding the Nim VM. This has multiple benefits:
- Evolve independently from Nim enabling new versions of Nimble to work
with multiple versions of Nim.
- Inherit all nimscript enhancements and bug fixes rather than having to
duplicate functionality.
- Fast build time and smaller binary.
- No dependency on the compiler package which could cause dependency issues
when nimble is used as a package.

Several other features and fixes have been implemented to improve general
development and test workflows.
- `nimble test` now sports a `-continue` or `-c` flag that allows tests
to continue on failure, removes all created test binaries on completion
and warns if no tests found.
- The `--inclDeps` or `-i` flag enables `nimble uninstall` to remove all
dependent packages during uninstall.
- Added documentation on the usage of a custom `nimbleDir`.
- Package type interactive prompt is more readable.
- Save temporary files in a per-user temp dir to enable Nimble on multi-user
systems.
- CTRL-C is now handled correctly in interactive prompts.
- Fixed issue where empty package list led to error.
- Fixed issue where file:// was prepended incorrectly.
- Fixed miscellaneous issues in version parsing, Github auth and briefClone.
- Miscellaneous cleanup of deprecated procs.

----

Full changelog: https://github.com/nim-lang/nimble/compare/v0.9.0...v0.10.0

## 0.9.0 - 19/09/2018

This is a major new release which contains at least one breaking change.
Expand Down
2 changes: 1 addition & 1 deletion nimble.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.9.0"
version = "0.10.0"
author = "Dominik Picheta"
description = "Nim package manager."
license = "BSD"
Expand Down
2 changes: 1 addition & 1 deletion src/nimblepkg/common.nim
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ when not defined(nimscript):
return (error, hint)

const
nimbleVersion* = "0.9.0"
nimbleVersion* = "0.10.0"

0 comments on commit 06b9b49

Please sign in to comment.