Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ are not marked). Those prefixed with "(+)" are new command/option (since
[#6910 #6597 @NathanReb @kit-ty-kate]
* Do not fail on directories named `opam` when scanning the `packages`
directory of a repository during `opam repo add` or `opam init`
(worked on subsequent `opam update`) [#6941 @kit-ty-kate @rjbou]
(worked on subsequent `opam update`) [#6995 @kit-ty-kate @rjbou]
* Added return 0 for zsh/bash/sh/fish to prevent leaking error codes
[#6930 @ta2005]
* Fix the filename check used when parsing arguments to allow `/` to be
Expand Down
18 changes: 9 additions & 9 deletions configure

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dnl The line below must be formatted AC_INIT([opam],[VERSION]) with no extra spaces
AC_INIT([opam],[2.6.0~alpha1])
AC_INIT([opam],[2.7.0~alpha1~dev])
AC_COPYRIGHT(Copyright 2012-2019 OcamlPro SAS)

AC_CONFIG_MACRO_DIR([m4])
Expand Down
1 change: 1 addition & 0 deletions master_changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ moved, etc.), please update the _API updates_ part (it helps opam library
users)

## Version
* Bump version to `2.7.0~alpha1~dev` [#7064 @kit-ty-kate]

## Global CLI

Expand Down
2 changes: 1 addition & 1 deletion opam-client.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Client library for opam 2.6"
description: """
Actions on the opam root, switches, installations, and front-end.
Expand Down
2 changes: 1 addition & 1 deletion opam-core.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Core library for opam 2.6"
description:
"Small standard library extensions, and generic system interaction modules used by opam."
Expand Down
2 changes: 1 addition & 1 deletion opam-devel.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Bootstrapped development binary for opam 2.6"
description: """
This package compiles (bootstraps) opam. For consistency and safety of the installation, the binaries are not installed into the PATH, but into lib/opam-devel, from where the user can manually install them system-wide.
Expand Down
2 changes: 1 addition & 1 deletion opam-format.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Format library for opam 2.6"
description: """
Definition of opam datastructures and its file interface.
Expand Down
2 changes: 1 addition & 1 deletion opam-installer.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Installation of files to a prefix, following opam conventions"
description: """
opam-installer is a small tool that can read *.install files, as defined by opam [1], and execute them to install or remove package files without going through opam.
Expand Down
2 changes: 1 addition & 1 deletion opam-repository.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Repository library for opam 2.6"
description: """
This library includes repository and remote sources handling, including curl/wget, rsync, git, mercurial, darcs backends.
Expand Down
2 changes: 1 addition & 1 deletion opam-solver.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "Solver library for opam 2.6"
description: """
Solver and Cudf interaction. This library is based on the Cudf and Dose libraries, and handles calls to the external solver from opam.
Expand Down
2 changes: 1 addition & 1 deletion opam-state.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "2.6.0~alpha1"
version: "2.7.0~alpha1~dev"
synopsis: "State library for opam 2.6"
description: """
Handling of the ~/.opam hierarchy, repository and switch states.
Expand Down
Loading