Skip to content

Commit

Permalink
Merge pull request #37 from gridap/release-0.1
Browse files Browse the repository at this point in the history
Release 0.1
  • Loading branch information
fverdugo authored Aug 23, 2021
2 parents b293d10 + ed8d920 commit 9a266f1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: CompatHelper

on:
schedule:
- cron: 0 0 * * *
workflow_dispatch:
- cron: '00 00 * * *'

jobs:
CompatHelper:
runs-on: ubuntu-latest
Expand All @@ -12,5 +13,4 @@ jobs:
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
6 changes: 4 additions & 2 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: TagBot
on:
schedule:
- cron: 0 0 * * *
issue_comment:
types:
- created
workflow_dispatch:
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.1.0] - Unreleased
## [0.1.0] - 2021-08-23

### Added
- Visualization of vertices, edges, and faces of Gridap `Triangulaiton` objects made of simplices.
Expand Down
8 changes: 4 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"

[compat]
CairoMakie = "0.6"
CairoMakie = "0.5, 0.6"
FileIO = "1"
FillArrays = "0.12"
GLMakie = "0.4"
FillArrays = "0.11, 0.12"
GLMakie = "0.3, 0.4"
GeometryBasics = "0.3"
Gridap = "0.16"
Makie = "0.15"
Makie = "0.13, 0.15"
julia = "1.6"

[extras]
Expand Down

2 comments on commit 9a266f1

@fverdugo
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/43350

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 9a266f1b17745633eaaa73c7710de374d5f0cb9a
git push origin v0.1.0

Please sign in to comment.