Skip to content

Commit

Permalink
Release 0.5.0 (#168)
Browse files Browse the repository at this point in the history
* setup rever

* add header to changelog

* bumped version to 0.5.0

* Updated authorship for 0.5.0

* Updated CHANGELOG for 0.5.0
  • Loading branch information
dholth authored Jun 7, 2024
1 parent 4c8b0b1 commit f6f80d9
Show file tree
Hide file tree
Showing 15 changed files with 144 additions and 159 deletions.
37 changes: 37 additions & 0 deletions .authors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
- name: Carl Anderson
email: barabo@users.noreply.github.com
num_commits: 1
first_commit: 2022-07-26 09:56:39
github: barabo
- name: Andrew Vallette
email: andrewvallette@gmail.com
num_commits: 1
first_commit: 2022-06-28 20:09:54
github: AndrewValette
- name: Daniel Holth
email: dholth@anaconda.com
num_commits: 85
first_commit: 2022-05-18 19:49:18
github: dholth
- name: jaimergp
email: jaimergp@users.noreply.github.com
num_commits: 1
first_commit: 2023-08-29 10:56:37
github: jaimergp
- name: Conda Bot
email: conda-bot@users.noreply.github.com
num_commits: 1
first_commit: 2022-11-15 10:37:42
github: conda-bot
aliases:
- 18747875+conda-bot@users.noreply.github.com
- name: Jannis Leidel
email: jannis@leidel.info
num_commits: 5
first_commit: 2022-05-17 13:35:54
github: jezdez
- name: conda-bot
email: 18747875+conda-bot@users.noreply.github.com
num_commits: 24
first_commit: 2023-02-23 19:13:51
github: conda-bot
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,5 @@ dmypy.json
# databases
*.db
*.db-*

rever/
18 changes: 18 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# This file was autogenerated by rever: https://regro.github.io/rever-docs/
# This prevent git from showing duplicates with various logging commands.
# See the git documentation for more details. The syntax is:
#
# good-name <good-email> bad-name <bad-email>
#
# You can skip bad-name if it is the same as good-name and is unique in the repo.
#
# This file is up-to-date if the command git log --format="%aN <%aE>" | sort -u
# gives no duplicates.

Andrew Vallette <andrewvallette@gmail.com>
Carl Anderson <barabo@users.noreply.github.com>
Conda Bot <conda-bot@users.noreply.github.com> 18747875+conda-bot@users.noreply.github.com <conda-bot@users.noreply.github.com>
Daniel Holth <dholth@anaconda.com>
Jannis Leidel <jannis@leidel.info>
conda-bot <18747875+conda-bot@users.noreply.github.com>
jaimergp <jaimergp@users.noreply.github.com>
10 changes: 10 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
All of the people who have made at least one contribution to conda-index.
Authors are sorted alphabetically.

* Andrew Vallette
* Carl Anderson
* Conda Bot
* Daniel Holth
* Jannis Leidel
* conda-bot
* jaimergp
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
[//]: # (current developments)

## 0.5.0 (2024-06-07)

### Enhancements

* Add experimental `python -m conda_index.json2jlap` script to run after
indexing, to create `repodata.jlap` patch sets for incremental repodata
downloads. (#125)
* Add `--current-repodata/--no-current-repodata` flags to control whether
`current_repodata.json` is generated. (#139)
* Add support for CEP-15 ``base_url`` to host packages separate from repodata.
(#150)
* Support fsspec (in the API only) to index any fsspec-supported remote
filesystem. Also enables the input packages folder to be separate from the
cache and output folders. (#143)

### Bug fixes

* Move `run_exports.json` query into cache, instead of directly using SQL in
`ChannelIndex`. (#163)
* Create parents when creating `<subdir>/.cache` (#166)

### Other

* Approach 100% code coverage in test suite; reformat with ruff. (#145)
* Update CI configuration to test on more platforms (#142)
* Drop support for Python 3.7; support Python 3.8+ only. (#130)

### Contributors

* @dholth
* @jezdez
* @conda-bot



## 0.4.0 (2024-01-29)

### Enhancements
Expand Down
21 changes: 0 additions & 21 deletions news/125-jlap

This file was deleted.

20 changes: 0 additions & 20 deletions news/139-no-current-repodata

This file was deleted.

19 changes: 0 additions & 19 deletions news/143-complete-code-coverage

This file was deleted.

20 changes: 0 additions & 20 deletions news/163-cache-run-exports

This file was deleted.

19 changes: 0 additions & 19 deletions news/166-cache-mkdir-parents

This file was deleted.

20 changes: 0 additions & 20 deletions news/base-url

This file was deleted.

19 changes: 0 additions & 19 deletions news/improved-ci

This file was deleted.

21 changes: 0 additions & 21 deletions news/index-remote-packages

This file was deleted.

34 changes: 34 additions & 0 deletions rever.xsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
$ACTIVITIES = ["authors", "changelog"]

# Basic settings
$PROJECT = $GITHUB_REPO = $(basename $(git remote get-url origin)).split('.')[0].strip()
$GITHUB_ORG = "conda"

# Authors settings
$AUTHORS_FILENAME = "AUTHORS.md"
$AUTHORS_SORTBY = "alpha"

# Changelog settings
$CHANGELOG_FILENAME = "CHANGELOG.md"
$CHANGELOG_PATTERN = r"\[//\]: # \(current developments\)"
$CHANGELOG_HEADER = """[//]: # (current developments)
## $VERSION ($RELEASE_DATE)
"""
$CHANGELOG_CATEGORIES = [
"Enhancements",
"Bug fixes",
"Deprecations",
"Docs",
"Other",
]
$CHANGELOG_CATEGORY_TITLE_FORMAT = "### {category}\n\n"
$CHANGELOG_AUTHORS_TITLE = "Contributors"
$CHANGELOG_AUTHORS_FORMAT = "* @{github}\n"

try:
# allow repository to customize synchronized-from-infa rever config
from rever_overrides import *
except ImportError:
pass
6 changes: 6 additions & 0 deletions rever_overrides.xsh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# override synced-from-infra rever.xsh
$ACTIVITIES = ["version_bump", "authors", "changelog"]

$VERSION_BUMP_PATTERNS = [ # These note where/how to find the version numbers
('conda_index/__init__.py', r'__version__\s*=.*', '__version__ = "$VERSION"'),
]

0 comments on commit f6f80d9

Please sign in to comment.