Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Allow non-master branch names to be used in repos #16

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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 .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
on: [push]
on: [push, pull_request]

name: CI

Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## 0.5.0

Closes #15

### Meta
- Fixes `nix-shell` on NixOS
- Fixes `rustc` on NixOS (failed with an obscure libz error a-la [this
issue](https://github.com/NixOS/nixpkgs/issues/91314))
- Updates nixpkgs-mozilla to the newest version

### Palisade
- Enable support for non-master default branches in GitHub actions

### `github`
- Add `default_branch` to the list of Repo properties
- Add a `Client::get_repo` call that fetches repo information from the GitHub API

## 0.4.0

Tag names were incorrectly generated. Before they were the version number, but now they are `v${VERSION}`. This should fix compatibility issues with Go modules.
Expand Down
Loading