1
0
mirror of https://github.com/github/choosealicense.com synced 2024-12-22 04:40:09 +01:00

Merge pull request #711 from github/unhidebsl

Show BSL-1.0 between MIT and Unlicense in license spectrum
This commit is contained in:
Mike Linksvayer 2019-12-27 09:55:20 -08:00 committed by GitHub
commit cb897a7471
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,7 @@
---
title: Boost Software License 1.0
spdx-id: BSL-1.0
hidden: false
description: A simple permissive license only requiring preservation of copyright and license notices for source (and not binary) distribution. Licensed works, modifications, and larger works may be distributed under different terms and without source code.

View File

@ -14,6 +14,7 @@ title: Licenses
{% include license-overview.html license-id="mpl-2.0" %}
{% include license-overview.html license-id="apache-2.0" %}
{% include license-overview.html license-id="mit" %}
{% include license-overview.html license-id="bsl-1.0" %}
{% include license-overview.html license-id="unlicense" %}
The above licenses represent the entire spectrum of open source licenses, from highly protective to unconditional. One of these should work for most new open source projects. Many other open source licenses exist, including older versions of and close substitutes for some of the above. See the resources listed on our <a href="/about/">about page</a> if you'd like to read more.

View File

@ -10,6 +10,7 @@ describe 'shown licenses' do
apache-2.0
bsd-2-clause
bsd-3-clause
bsl-1.0
cc0-1.0
epl-2.0
gpl-2.0
@ -21,7 +22,7 @@ describe 'shown licenses' do
].freeze
it 'has the expected number of shown licenses' do
expect(shown_licenses.count).to eql(12)
expect(shown_licenses.count).to eql(13)
expect(SHOWN_LICENSES.count).to eql(shown_licenses.count)
end