Skip to content

Commit

Permalink
Gec v1.0.2 (#7)
Browse files Browse the repository at this point in the history
## v1.0.2 (2021-01-21)

### Fixed
- Added an Oxford comma
- Added font resources
  • Loading branch information
gecrooks authored Jan 21, 2021
1 parent 37e5d5b commit f3d1440
Show file tree
Hide file tree
Showing 9 changed files with 226 additions and 171 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build_latex.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Build LaTeX document
on: [push]
jobs:
build_latex:
runs-on: ubuntu-latest
steps:
- name: Set up Git repository
uses: actions/checkout@v2
- name: Install latex
run: sudo apt-get install -y texlive texlive-xetex texlive-fonts-extra latexmk
- name: Compile LaTeX document
run: latexmk -xelatex FieldGuide.tex
39 changes: 39 additions & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

name: Create Release

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install latex
run: sudo apt-get install -y texlive texlive-xetex texlive-fonts-extra latexmk
- name: Compile LaTeX document
run: latexmk -xelatex FieldGuide.tex
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
asset_path: ./FieldGuide.pdf
asset_name: FieldGuide.pdf
asset_content_type: application/pdf
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Changelog

## [1.0.1] - 2021-01-18

## v1.0.2 (2021-01-21)
- Added an Oxford comma
- Added font resources



## v1.0.1 (2021-01-18)

### Fixed
- Made non-central consistently noncentral
- Fixed LogLogistic relation to GenBetaPrime Kudos: Robert Calvert Jump
- Fixed LogLogistic relation to GenBetaPrime. Kudos: Robert Calvert Jump
- Added changelog
- Updated urls, http -> https
- Fix inconsistent use of scale and location in ch 17 (#2) Kudos: Albert Alex Zevelev
Expand All @@ -18,5 +25,5 @@



## [1.0.0] - 2019-04-01
## v1.0.0 (2019-04-01)
First print edition. For version history see Acknowledgments (page 4).
2 changes: 1 addition & 1 deletion ChAcknowledgments.tex
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@


0.5 (2013-07-01)
Added uniform product, half generalized Pearson VII, half exponential power, GUD and q-type distributions.
Added uniform product, half generalized Pearson VII, half exponential power, GUD, and q-type distributions.
Moved Pearson IV to own section.
Fixed errors in inverse Gaussian.
Added random variate generation to appendix.
Expand Down
Loading

0 comments on commit f3d1440

Please sign in to comment.