Skip to content

Commit

Permalink
Merge pull request #6 from ClydeDz/dev/1.0.0
Browse files Browse the repository at this point in the history
Dev/1.0.0
  • Loading branch information
ClydeDz authored Dec 21, 2020
2 parents 59e9232 + aa55104 commit 31a7419
Show file tree
Hide file tree
Showing 6 changed files with 108 additions and 13 deletions.
65 changes: 65 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# Contributing

When contributing to this repository, please first discuss the change you wish to make via issue. Please note we have a code of conduct, please follow it in all your interactions with the project.

## Pull Request Process

1. Ensure any install or build dependencies are removed before the end of the layer when doing a
build.
2. Update the `README.md` file with details of changes to this NuGet package.
3. Increase the version number in the `Horoscope.nuspec` file. The versioning scheme we use is [SemVer](http://semver.org/).
4. You may merge the Pull Request in once you have the sign-off of another developer, or if you
do not have permission to do that, you may request the reviewer to merge it for you.

## Code of Conduct

### Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

### Our responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

### Scope

This Code of Conduct applies both within project spaces and in public spaces
when an individual is representing the project or its community. Examples of
representing a project or community include using an official project e-mail
address, posting via an official social media account, or acting as an appointed
representative at an online or offline event. Representation of a project may be
further defined and clarified by project maintainers.

### Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at [http://contributor-covenant.org/version/1/4][version]

[homepage]: http://contributor-covenant.org
[version]: http://contributor-covenant.org/version/1/4/
12 changes: 12 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## Select type of issue
<!--- Put an `x` in a box that applies: -->
- [ ] Bug
- [ ] Feature request

## If it's a bug...
**Please explain what the issue is and the steps to reproduce the issue in as much detail below.**
(Insert comment here)

## If it's a feature request...
**Please explain your request and why you'd like to see it in this service.**
(Insert comment here)
17 changes: 17 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## What has changed and why?
(Insert description here)

## Checklist
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
- [ ] I have read the `CONTRIBUTING` document.
- [ ] My code follows the code style of this project.
- [ ] My change requires to update the console app that outlines how to use the NuGet package.
- [ ] My change requires a change to the documentation in the `README` file.
- [ ] I have updated the documentation in the `README` file accordingly.
- [ ] I have updated the version number in the [`Horoscope.nuspec`](https://github.com/ClydeDz/horoscope-nuget/blob/master/Src/Horoscope.nuspec) file using the [SemVer](https://semver.org/) format.
- [ ] I have added tests to cover my changes.
- [ ] All new and existing tests passed.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ A .NET library for zodiac signs. Get details on each zodiac sign, pass a date an

[![NuGet](https://img.shields.io/nuget/v/horoscope.svg?colorB=green&label=NuGet&logo=nuget&style=flat)](https://www.nuget.org/packages/Horoscope/)
[![NuGet Downloads](https://img.shields.io/nuget/dt/horoscope.svg?colorB=%23004880&label=NuGet%20Downloads&logo=nuget&style=flat)](https://www.nuget.org/packages/Horoscope/)
[![Build status](https://dev.azure.com/horoscope-nuget/Horoscope%20NuGet/_apis/build/status/Master%20branch%20build)](https://dev.azure.com/horoscope-nuget/Horoscope%20NuGet/_build/latest?definitionId=1)
[![Test status](https://img.shields.io/azure-devops/tests/horoscope-nuget/Horoscope%20NuGet/1/master.svg?label=Tests&logo=Azure%20DevOps&style=flat)](https://dev.azure.com/horoscope-nuget/Horoscope%20NuGet/_build/latest?definitionId=1)
[![Azure DevOps builds](https://img.shields.io/azure-devops/build/clydedsouza-nuget/90af4830-1be2-4677-981d-15d0b01937e4/1?logo=Azure%20DevOps)](https://dev.azure.com/clydedsouza-nuget/Horoscope%20NuGet/_build)
[![Azure DevOps tests](https://img.shields.io/azure-devops/tests/clydedsouza-nuget/Horoscope%2520NuGet/1?logo=Azure%20DevOps)](https://dev.azure.com/clydedsouza-nuget/Horoscope%20NuGet/_build)

## How to use
#### Installation
Expand Down Expand Up @@ -32,7 +32,7 @@ var zodiacSign = Zodiac.GetZodiacSignForDate(new DateTime(1950, 2, 12));


## Release notes
Find release notes [here](https://github.com/ClydeDz/horoscope-nuget/wiki#release-notes).
Find release notes [here](https://github.com/ClydeDz/horoscope-nuget/releases).

## Credits
(c) 2018 [Clyde D'Souza](https://clydedsouza.net)
Expand Down
8 changes: 4 additions & 4 deletions Src/Horoscope.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Horoscope</id>
<version>0.0.5-alpha</version>
<version>0.9.0</version>
<title>Horoscope</title>
<authors>Clyde D'Souza</authors>
<owners>Clyde D'Souza</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<projectUrl>https://github.com/ClydeDz/horoscope-nuget/wiki</projectUrl>
<projectUrl>https://github.com/ClydeDz/horoscope-nuget</projectUrl>
<repository url="https://github.com/ClydeDz/horoscope-nuget" />
<iconUrl>https://raw.githubusercontent.com/ClydeDz/horoscope-nuget/master/Icon.png</iconUrl>
<description>A .NET library for zodiac signs. Get details on each zodiac sign, pass a date and know which zodiac sign it falls in or get a list of all zodiac signs. Now includes Chinese zodiac signs and elements!</description>
<summary>A .NET library for zodiac signs. Get details on each zodiac sign, pass a date and know which zodiac sign it falls in or get a list of all zodiac signs.</summary>
<releaseNotes>Bumped version to 0.0.5-alpha with minor refactoring to the solution to support CI/CD.
<releaseNotes>Add contributing guidelines and a pull request template to the GitHub repository.

More release notes here: https://github.com/ClydeDz/horoscope-nuget/wiki#release-notes </releaseNotes>
More release notes here: https://github.com/ClydeDz/horoscope-nuget/releases </releaseNotes>
<copyright>Copyright (c) 2018 Clyde D'Souza</copyright>
<tags>horoscope zodiac development library zodiac-signs chinese-zodiac chinese-horoscope yinyang chinese-elements yin-yang</tags>
<dependencies>
Expand Down
13 changes: 7 additions & 6 deletions Src/Horoscope/Horoscope.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,22 @@
<Authors>Clyde D'Souza</Authors>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageId>Horoscope</PackageId>
<Version>0.0.3</Version>
<Version>0.9.0</Version>
<Company />
<PackageLicenseUrl>https://github.com/ClydeDz/horoscope-nuget/blob/master/LICENSE</PackageLicenseUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/ClydeDz/horoscope-nuget</RepositoryUrl>
<PackageProjectUrl>https://github.com/ClydeDz/horoscope-nuget/wiki</PackageProjectUrl>
<PackageProjectUrl>https://github.com/ClydeDz/horoscope-nuget</PackageProjectUrl>
<PackageTags>horoscope zodiac development library zodiac-signs chinese-zodiac chinese-horoscope yinyang chinese-elements yin-yang</PackageTags>
<Description>A .NET library for zodiac signs. Get details on each zodiac sign, pass a date and know which zodiac sign it falls in or get a list of all zodiac signs. Now includes Chinese zodiac signs and elements!</Description>
<Copyright>Copyright (c) 2018 Clyde D'Souza</Copyright>
<PackageReleaseNotes>Now includes Chinese zodiac signs, fixed elements (i.e., wood, fire, earth, metal, water) and yin yang associated with each Chinese zodiac sign.

More release notes here: https://github.com/ClydeDz/horoscope-nuget/wiki#release-notes</PackageReleaseNotes>
<AssemblyVersion>0.0.0.3</AssemblyVersion>
<FileVersion>0.0.0.3</FileVersion>
More release notes here: https://github.com/ClydeDz/horoscope-nuget/releases</PackageReleaseNotes>
<AssemblyVersion>0.9.0.0</AssemblyVersion>
<FileVersion>0.0.0.0</FileVersion>
<PackageIconUrl>https://raw.githubusercontent.com/ClydeDz/horoscope-nuget/master/Icon.png</PackageIconUrl>
<Product>Horoscope</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
Expand Down

0 comments on commit 31a7419

Please sign in to comment.