Skip to content

Commit

Permalink
Merge pull request #55 from casework/release-0.10.1
Browse files Browse the repository at this point in the history
Release 0.10.1
  • Loading branch information
ajnelson-nist authored Oct 26, 2023
2 parents cca9888 + 4d13ff4 commit d7297d5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
# Portions of this file contributed by NIST are governed by the following
# statement:
#
# This software was developed at the National Institute of Standards
# and Technology by employees of the Federal Government in the course
# of their official duties. Pursuant to title 17 Section 105 of the
# United States Code this software is not subject to copyright
# protection and is in the public domain. NIST assumes no
# responsibility whatsoever for its use by other parties, and makes
# no guarantees, expressed or implied, about its quality,
# reliability, or any other characteristic.
# of their official duties. Pursuant to Title 17 Section 105 of the
# United States Code, this software is not subject to copyright
# protection within the United States. NIST assumes no responsibility
# whatsoever for its use by other parties, and makes no guarantees,
# expressed or implied, about its quality, reliability, or any other
# characteristic.
#
# We would appreciate acknowledgement if the software is used.

# This workflow uses Make to review direct dependencies of this
# repository.

name: Supply Chain
name: Prerelease

on:
schedule:
- cron: '15 5 * * 1,2,3,4,5'
pull_request:
branches:
- main

jobs:
build:
Expand All @@ -29,12 +33,10 @@ jobs:
- '3.11'

steps:
- uses: actions/checkout@v3
with:
ref: develop
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Review dependencies
run: make check-supply-chain
run: make check-supply-chain-pre-commit
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/psf/black
rev: 23.7.0
rev: 23.10.1
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ check: \
check-supply-chain: \
check-supply-chain-pre-commit

# This target is scheduled to run as part of prerelease review.
check-supply-chain-pre-commit: \
.venv-pre-commit/var/.pre-commit-built.log
source .venv-pre-commit/bin/activate \
Expand Down
2 changes: 1 addition & 1 deletion case_gnu_time/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
This library parses the output of GNU Time into a UCO Process graph node.
"""

__version__ = "0.10.0"
__version__ = "0.10.1"

import argparse
import datetime
Expand Down

0 comments on commit d7297d5

Please sign in to comment.