mirror of https://github.com/mamba-org/mamba.git
prepare release 0.19.1
This commit is contained in:
parent
17c9627984
commit
89f2ae0054
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -1,3 +1,23 @@
|
|||
2021.12.08
|
||||
==========
|
||||
|
||||
Releases: libmamba 0.19.1, libmambapy 0.19.1, mamba 0.19.1, micromamba 0.19.1
|
||||
|
||||
Bug fixes
|
||||
- [mamba] Fix environment double print and add dry run to `mamba env create` (@wolfv) #1315
|
||||
- [micromamba] Fix lockfiles in Unicode prefix (@wolfv) #1319
|
||||
- [libmamba] Fix curl progress callback
|
||||
|
||||
Improvements
|
||||
- [libmamba] Use WinReg from conda-forge
|
||||
- [libmamba] Add fast path for hide_secrets (thanks @baszalmstra) #1337
|
||||
- [libmamba] Use the original sha256 hash if a file doesnt change (thanks @baszalmstra) #1338
|
||||
- [libmamba] Rename files that are in use (and cannot be removed) on Windows (@wolfv) #1319
|
||||
- [micromamba] Add `micromamba clean --trash` command to remove `*.mamba_trash` files (@wolfv) #1319
|
||||
- [libmamba] Avoid recomputing SHA256 for symbolic links (@wolfv) #1319
|
||||
- [libmamba] Improve cleanup of directories in use (@wolfv) #1319
|
||||
- [libmamba] Fix pyc compilation on Windows (@adriendelsalle) #1340
|
||||
|
||||
2021.11.30
|
||||
==========
|
||||
|
||||
|
|
15
releaser.py
15
releaser.py
|
@ -54,8 +54,6 @@ def apply_changelog(name, version, changes):
|
|||
|
||||
|
||||
def commands(changes):
|
||||
print("pre-commit run --all")
|
||||
print("git diff")
|
||||
|
||||
commit_msg = ", ".join([f"{x} {changes[x]['version']}" for x in changes])
|
||||
|
||||
|
@ -68,11 +66,20 @@ def commands(changes):
|
|||
files_to_commit += f" {templates[c][:-len('.tmpl')]} \\\n"
|
||||
files_to_commit = files_to_commit[:-3]
|
||||
|
||||
print(f"git commit -m 'release {commit_msg}' \\\n{files_to_commit}")
|
||||
files_to_revert = ""
|
||||
for c in changes:
|
||||
files_to_commit += f" {templates[c][:-len('.tmpl')]} \\\n"
|
||||
print("\n\n--- REVERT ---\n\n")
|
||||
print(f"git checkout origin/master -- \\\n{files_to_commit[:-3]}\n\n")
|
||||
|
||||
print("\n\n--- COMMIT ---\n\n")
|
||||
print("pre-commit run --all")
|
||||
print("git diff")
|
||||
print(f"git commit -m 'release {commit_msg}' \\\n{files_to_revert}")
|
||||
|
||||
print(f"git tag {date_stamp}")
|
||||
for c in changes:
|
||||
print(f"git tag {c}_{changes[c]['version']}")
|
||||
print(f"git tag {c}-{changes[c]['version']}")
|
||||
|
||||
|
||||
class Section:
|
||||
|
|
Loading…
Reference in New Issue