Skip to content

Commit

Permalink
Merge pull request #269 from UAL-RE/267-release-v120
Browse files Browse the repository at this point in the history
Release: v1.2.0
  • Loading branch information
yhan818 authored Jun 22, 2023
2 parents 6afdcdb + 27ed72a commit 156c126
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [v1.2.0](https://github.com/UAL-RE/LD-Cool-P/tree/v1.2.0) (2023-06-22)

* Fix: TinyURL alias handling (Issue #261) by @zoidy in https://github.com/UAL-RE/LD-Cool-P/pull/265
* Fix: Update handling of : in citation generation (Issue #264) by @zoidy in https://github.com/UAL-RE/LD-Cool-P/pull/266

**Full Changelog**: https://github.com/UAL-RE/LD-Cool-P/compare/v1.1.9...v1.2.0

## [v1.1.9](https://github.com/UAL-RE/LD-Cool-P/tree/v1.1.9) (2023-05-09)

**Closed issues:**
Expand Down
22 changes: 5 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ These instructions will have the code running on your local or virtual machine.
### Requirements

You will need the following to have a working copy of this software. See
[installation](#installation-instructions) steps:
[installation](#installation-instructions) steps: Note: some of the dependencies will be updated.
1. Python (>=v3.7.9)
2. [`figshare`](https://github.com/UAL-RE/figshare) - ReDATA's forked copy of [cognoma's figshare](https://github.com/cognoma/figshare)
3. [`pandas`](https://pandas.pydata.org/) ([1.2.3](https://pandas.pydata.org/pandas-docs/version/1.2.3/))
Expand Down Expand Up @@ -116,7 +116,7 @@ You can confirm installation via `conda list`
(curation) $ conda list ldcoolp
```

You should see that the version is `1.1.8`.
You should see that the version is `1.2.0`.

### Configuration Settings

Expand Down Expand Up @@ -222,27 +222,15 @@ We use [SemVer](http://semver.org/) for versioning. For the versions available,
Releases are auto-generated using this [GitHub Actions script](.github/workflows/create_release.yml)
following a `git tag` version.

## Continuous Integration

Initially we started using [Travis CI](https://travis-ci.com); however, due
to the change in
[pricing for open-source repositories](https://travis-ci.community/t/org-com-migration-unexpectedly-comes-with-a-plan-change-for-oss-what-exactly-is-the-new-deal/10567),
we decided to use
[GitHub Actions](https://docs.github.com/en/free-pro-team@latest/actions).
Currently, there are two GitHub Action workflows:
1. A "Create release" workflow, [`create-release.yml`](.github/workflows/create-release.yml)
for new releases when a tag is pushed
2. A "Python package" workflow, [`python-package.yml`](.github/workflows/python-package.yml)
for builds and tests

## Changelog

See the [CHANGELOG](CHANGELOG.md) for all changes since project inception


## Authors
* Fernando Rios, Yan Han [University of Arizona Libraries](https://github.com/ualibraries), [Research Engagement](https://github.com/UAL-RE)
* Chun Ly, Ph.D. ([@astrochun](http://www.github.com/astrochun))
* UAL-RE [University of Arizona Libraries](https://github.com/ualibraries), [Research Engagement](https://github.com/UAL-RE)
* Current authors: Fernando Rios, Yan Han
* Past author: Chun Ly, Ph.D. ([@astrochun](http://www.github.com/astrochun))


See also the list of
Expand Down
2 changes: 1 addition & 1 deletion ldcoolp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from os import path

__version__ = "1.1.9"
__version__ = "1.2.0"

CODE_NAME = "LD-Cool-P"

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

setup(
name='ldcoolp',
version='1.1.9',
version='1.2.0',
packages=['ldcoolp'],
url='https://github.com/UAL-RE/LD-Cool-P',
license='MIT License',
author='Fernando Rios',
author_email='frios@arizona.edu',
author='UAL-RE',
author_email='redata@arizona.edu',
description='Python tool to enable data curation',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 156c126

Please sign in to comment.