Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates version info #26

Merged
merged 1 commit into from Jan 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 1.1.2 - 2022-01-20

* Updates mocha to v9.

## 1.1.1

* Use `var` in a small amount of newer code that used `let`, to match ES5 legacy support status of the rest of the module. We should probably decide on a strategy for moving this module to ES6, but there is no urgency.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2013 P'unk Avenue LLC
Copyright (c) 2022 Apostrophe Technologies, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,14 +1,14 @@
{
"name": "random-words",
"version": "1.1.1",
"version": "1.1.2",
"description": "Generate one or more common English words",
"main": "index.js",
"scripts": {
"test": "mocha tests/test.js"
},
"repository": {
"type": "git",
"url": "git@github.com:punkave/random-words.git"
"url": "git@github.com:apostrophecms/random-words.git"
},
"keywords": [
"random",
Expand All @@ -19,7 +19,7 @@
"sample",
"text"
],
"author": "Thomas Boutell",
"author": "Apostrophe Technologies",
"license": "MIT",
"devDependencies": {
"mocha": "^9.1.3"
Expand Down